HomeSort by relevance Sort by last modified time
    Searched refs:SID (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/sandbox/win/src/
sid.h 13 class Sid {
15 // Constructors initializing the object with the SID passed.
17 Sid(const SID *sid);
18 Sid(WELL_KNOWN_SID_TYPE type);
21 const SID *GetPSID() const;
sid.cc 5 #include "sandbox/win/src/sid.h"
11 Sid::Sid(const SID *sid) {
12 ::CopySid(SECURITY_MAX_SID_SIZE, sid_, const_cast<SID*>(sid));
15 Sid::Sid(WELL_KNOWN_SID_TYPE type) {
22 const SID *Sid::GetPSID() const
    [all...]
sid_unittest.cc 5 // This file contains unit tests for the sid class.
11 #include "sandbox/win/src/sid.h"
18 BOOL EqualSid(const SID *sid1, const SID *sid2) {
19 return ::EqualSid(const_cast<SID*>(sid1), const_cast<SID*>(sid2));
22 // Tests the creation if a Sid
25 SID *sid_world_pointer = const_cast<SID*>(sid_world.GetPSID());
27 // Check the SID* constructo
    [all...]
restricted_token.cc 61 deny_only_array[i].Sid =
62 const_cast<SID*>(sids_for_deny_only_[i].GetPSID());
72 sids_to_restrict_array[i].Sid =
73 const_cast<SID*>(sids_to_restrict_[i].GetPSID());
189 unsigned RestrictedToken::AddAllSidsForDenyOnly(std::vector<Sid> *exceptions) {
223 if (::EqualSid(const_cast<SID*>((*exceptions)[j].GetPSID()),
224 token_groups->Groups[i].Sid)) {
232 reinterpret_cast<SID*>(token_groups->Groups[i].Sid));
242 unsigned RestrictedToken::AddSidForDenyOnly(const Sid &sid)
    [all...]
acl.cc 40 bool AddSidToDacl(const Sid& sid, ACL* old_dacl, ACCESS_MODE access_mode,
51 const_cast<SID*>(sid.GetPSID()));
59 bool AddSidToDefaultDacl(HANDLE token, const Sid& sid, ACCESS_MASK access) {
68 if (!AddSidToDacl(sid, default_dacl->DefaultDacl, GRANT_ACCESS, access,
91 reinterpret_cast<SID*>(token_user->User.Sid),
96 const Sid& sid, ACCESS_MODE access_mode
    [all...]
  /external/chromium_org/remoting/host/win/
security_descriptor.h 18 typedef TypedBuffer<SID> ScopedSid;
23 // Converts a SID into a text string.
24 std::string ConvertSidToString(SID* sid);
26 // Returns the logon SID of a token. Returns NULL if the token does not specify
27 // a logon SID or in case of an error.
security_descriptor.cc 29 // Converts a SID into a text string.
30 std::string ConvertSidToString(SID* sid) {
32 if (!ConvertSidToStringSid(sid, &c_sid_string))
40 // Returns the logon SID of a token. Returns NULL if the token does not specify
41 // a logon SID or in case of an error.
56 length = GetLengthSid(groups->Groups[i].Sid);
58 if (!CopySid(length, logon_sid.get(), groups->Groups[i].Sid))
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 82 EHFrameRelatedSections(SID EH, SID T, SID Ex)
84 SID EHFrameSID;
85 SID TextSID;
86 SID ExceptTabSID;
RuntimeDyldELF.h 99 SmallVector<std::pair<SID, GOTRelocations>, 8> GOTs; // Allocated tables.
104 SmallVector<SID, 2> UnregisteredEHFrameSections;
105 SmallVector<SID, 2> RegisteredEHFrameSections;
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
buildbin.sh 96 SID=$2
99 perl ${TOOLSDIR}/${GLW} ${CONFIGSDIR}/${LANG}/${LANG}_${SID}_sg.txt ${LANG}_${SID}_sg_${VERSION_SUFFIX}.bin
  /external/chromium_org/rlz/win/lib/
machine_id_win.cc 41 bool GetComputerSid(const wchar_t* account_name, SID* sid, DWORD sid_size) {
49 BOOL success = ::LookupAccountNameW(NULL, account_name, sid,
54 // one or both of sid and szDomain was too small. Check for that
62 success = ::LookupAccountNameW(NULL, account_name, sid, &sid_dword_size,
70 std::wstring ConvertSidToString(SID* sid) {
74 if (ConvertSidToStringSidW(sid, &sid_buffer)) {
79 SID_IDENTIFIER_AUTHORITY* sia = ::GetSidIdentifierAuthority(sid);
96 int sub_auth_count = *::GetSidSubAuthorityCount(sid);
114 SID* sid = reinterpret_cast<SID*>(sid_buffer); local
    [all...]
rlz_lib_win.cc 45 // Check if this SID has the desired access by scanning the ACEs in the DACL.
48 bool HasAccess(PSID sid, ACCESS_MASK access_mask, ACL* dacl) {
71 (mask & access_mask) == access_mask && EqualSid(existing_sid, sid))
75 (mask & access_mask) != 0 && EqualSid(existing_sid, sid))
97 // Create a SID that represents ALL USERS.
99 typed_buffer_ptr<SID> users_sid(users_sid_size);
132 typed_buffer_ptr<SID> owner(owner_size);
133 typed_buffer_ptr<SID> group(group_size);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_dump.c 83 #define SID(I) ctx->dump_printf( ctx, "%d", I )
107 SID( src->DimIndirect.Index );
113 SID( src->Dimension.Index );
118 SID(src->Dimension.Index);
126 SID( src->Indirect.Index );
132 SID( src->Register.Index );
137 SID( src->Register.Index );
154 SID( dst->DimIndirect.Index );
160 SID( dst->Dimension.Index );
165 SID(dst->Dimension.Index)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_dump.c 83 #define SID(I) ctx->dump_printf( ctx, "%d", I )
107 SID( src->DimIndirect.Index );
113 SID( src->Dimension.Index );
118 SID(src->Dimension.Index);
126 SID( src->Indirect.Index );
132 SID( src->Register.Index );
137 SID( src->Register.Index );
154 SID( dst->DimIndirect.Index );
160 SID( dst->Dimension.Index );
165 SID(dst->Dimension.Index)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndfapi.h 60 SID *userId,
winefs.h 43 SID *pUserSid;
51 SID *pUserSid;
fwpmu.h 199 const SID *sidOwner,
200 const SID *sidGroup,
244 const SID *sidOwner,
245 const SID *sidGroup,
306 const SID *sidOwner,
307 const SID *sidGroup,
389 const SID *sidOwner,
390 const SID *sidGroup,
427 const SID *sidOwner,
428 const SID *sidGroup
    [all...]
adtgen.h 58 SID *psid;
  /external/chromium_org/cloud_print/service/win/
local_security_policy.cc 85 LOG(ERROR) << "Unable to load Sid for" << username;
91 policy_, const_cast<SID*>(user_sid.GetPSID()), rights.Receive(), &count);
106 LOG(ERROR) << "Unable to load Sid for" << username;
117 ::LsaAddAccountRights(policy_, const_cast<SID*>(user_sid.GetPSID()),
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/cng/include/
webrtc_cng.h 60 * - interval : generate SID data every interval ms
97 * - forceSID : not zero to force SID frame and reset
112 * These functions updates the CN state, when a new SID packet arrives
116 * - SID : SID packet, all headers removed
117 * - length : Length in bytes of SID packet
122 int16_t WebRtcCng_UpdateSid(CNG_dec_inst* cng_inst, uint8_t* SID,
  /external/smack/src/com/kenai/jbosh/
Attributes.java 55 static final BodyQName SID = BodyQName.createBOSH("sid");
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/cng/
webrtc_cng.c 136 * - interval : generate SID data every interval ms
403 * These functions updates the CN state, when a new SID packet arrives
407 * - SID : SID packet, all headers removed
408 * - length : Length in bytes of SID packet
413 int16_t WebRtcCng_UpdateSid(CNG_dec_inst* cng_inst, uint8_t* SID,
432 if (SID[0] > 93)
433 SID[0] = 93;
434 targetEnergy = WebRtcCng_kDbov[SID[0]];
444 refCs[i] = SID[i + 1] << 8; /* Q7 to Q15*
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HbpcdLookup.java 110 public static final String SID = "SID";
  /external/lldb/test/pexpect-2.4/examples/
cgishell.cgi 235 SID="NOT"
242 SID=form['sid'].value
246 result = client (command + ' ' + arg, '/tmp/'+SID)
250 result = client (command, '/tmp/'+SID)
254 result = client (command, '/tmp/'+SID)
258 result = client (command, '/tmp/'+SID)
262 result = client (command, '/tmp/'+SID)
264 elif not form.has_key('sid'):
265 SID=random_sid(
    [all...]
  /external/checkpolicy/
policy_scan.l 77 SID |
78 sid { return(SID); }

Completed in 605 milliseconds

1 2 3