Lines Matching refs:nRight
342 sal_Int32 nRight = 0; in MapRight() local
344 nRight |= Privilege::SELECT; in MapRight()
346 nRight |= Privilege::INSERT; in MapRight()
348 nRight |= Privilege::UPDATE; in MapRight()
350 nRight |= Privilege::DELETE; in MapRight()
352 nRight |= Privilege::READ; in MapRight()
354 nRight |= Privilege::CREATE; in MapRight()
356 nRight |= Privilege::ALTER; in MapRight()
358 nRight |= Privilege::REFERENCE; in MapRight()
360 nRight |= Privilege::DROP; in MapRight()
362 return nRight; in MapRight()
367 sal_Int32 nRight = adRightNone; in Map2Right() local
369 nRight |= adRightRead; in Map2Right()
372 nRight |= adRightInsert; in Map2Right()
375 nRight |= adRightUpdate; in Map2Right()
378 nRight |= adRightDelete; in Map2Right()
381 nRight |= adRightReadDesign; in Map2Right()
384 nRight |= adRightCreate; in Map2Right()
387 nRight |= adRightWriteDesign; in Map2Right()
390 nRight |= adRightReference; in Map2Right()
393 nRight |= adRightDrop; in Map2Right()
395 return (RightsEnum)nRight; in Map2Right()