/external/chromium_org/sandbox/win/src/ |
acl.cc | 40 ACCESS_MASK access, ACL** new_dacl) { 52 if (ERROR_SUCCESS != ::SetEntriesInAcl(1, &new_access, old_dacl, new_dacl)) 66 ACL* new_dacl = NULL; 68 &new_dacl)) 72 new_token_dacl.DefaultDacl = new_dacl; 76 ::LocalFree(new_dacl); 99 PACL new_dacl = NULL; local 106 if (!AddSidToDacl(sid.GetPSID(), old_dacl, access_mode, access, &new_dacl)) { 113 new_dacl, NULL); 115 ::LocalFree(new_dacl); [all...] |
/external/chromium_org/rlz/win/lib/ |
rlz_lib_win.cc | 158 ACL* new_dacl = NULL; local 159 result = SetEntriesInAcl(1, &ea, dacl, &new_dacl); 165 BOOL ok = SetSecurityDescriptorDacl(new_sd, TRUE, new_dacl, FALSE); 169 LocalFree(new_dacl); 178 LocalFree(new_dacl);
|
/external/chromium_org/base/test/ |
test_file_util_win.cc | 52 PACL new_dacl; local 53 if (SetEntriesInAcl(1, &change, old_dacl, &new_dacl) != ERROR_SUCCESS) { 60 NULL, NULL, new_dacl, NULL); 62 LocalFree(new_dacl);
|
/external/chromium_org/chrome_frame/ |
chrome_tab.cc | 674 CDacl new_dacl; local 675 sd.GetDacl(&new_dacl); 676 new_dacl.AddAllowedAce(token_.GetUser(), GENERIC_WRITE | GENERIC_READ); 677 if (AtlSetDacl(object_name.c_str(), SE_REGISTRY_KEY, new_dacl)) { [all...] |