Home
last modified time | relevance | path

Searched refs:sddl (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/sandbox/win/src/
Drestricted_token_utils.cc240 base::string16 sddl = L"S:("; // SDDL for a SACL. in SetObjectIntegrityLabel() local
241 sddl += SDDL_MANDATORY_LABEL; // Ace Type is "Mandatory Label". in SetObjectIntegrityLabel()
242 sddl += L";;"; // No Ace Flags. in SetObjectIntegrityLabel()
243 sddl += ace_access; // Add the ACE access. in SetObjectIntegrityLabel()
244 sddl += L";;;"; // No ObjectType and Inherited Object Type. in SetObjectIntegrityLabel()
245 sddl += integrity_level_sid; // Trustee Sid. in SetObjectIntegrityLabel()
246 sddl += L")"; in SetObjectIntegrityLabel()
255 if (::ConvertStringSecurityDescriptorToSecurityDescriptorW(sddl.c_str(), in SetObjectIntegrityLabel()
/external/chromium_org/remoting/host/win/
Dcom_security.cc20 std::string sddl = security_descriptor; in InitializeComSecurity() local
22 sddl += mandatory_label; in InitializeComSecurity()
26 ScopedSd relative_sd = ConvertSddlToSd(sddl); in InitializeComSecurity()
Dsecurity_descriptor.cc14 ScopedSd ConvertSddlToSd(const std::string& sddl) { in ConvertSddlToSd() argument
18 UTF8ToUTF16(sddl).c_str(), SDDL_REVISION_1, &raw_sd, &length)) { in ConvertSddlToSd()
Dsecurity_descriptor.h21 ScopedSd ConvertSddlToSd(const std::string& sddl);
/external/wpa_supplicant_8/wpa_supplicant/
Dctrl_iface_named_pipe.c386 const char *sddl = NULL; in ctrl_iface_parse() local
390 sddl = params + 5; in ctrl_iface_parse()
391 if (!sddl) { in ctrl_iface_parse()
392 sddl = os_strstr(params, " SDDL="); in ctrl_iface_parse()
393 if (sddl) in ctrl_iface_parse()
394 sddl += 6; in ctrl_iface_parse()
397 if (!sddl) in ctrl_iface_parse()
400 wpa_printf(MSG_DEBUG, "CTRL: SDDL='%s'", sddl); in ctrl_iface_parse()
404 t_sddl = wpa_strdup_tchar(sddl); in ctrl_iface_parse()
415 sddl, (int) GetLastError()); in ctrl_iface_parse()
/external/chromium_org/chrome/installer/util/
Duser_experiment.cc158 wchar_t* sddl = 0; in FixDACLsForExecute() local
160 SDDL_REVISION_1, DACL_SECURITY_INFORMATION, &sddl, NULL)) in FixDACLsForExecute()
162 string16 new_sddl(sddl); in FixDACLsForExecute()
163 ::LocalFree(sddl); in FixDACLsForExecute()
/external/chromium_org/chrome_frame/
Dchrome_tab.cc493 std::wstring sddl; in RestoreSecurity() local
494 if (!ReadBackupKey(&sddl)) in RestoreSecurity()
499 if (!sd.FromString(sddl.c_str())) in RestoreSecurity()
520 bool ReadBackupKey(std::wstring* sddl) { in ReadBackupKey() argument
535 if (backup_key.ReadValue(NULL, WriteInto(sddl, wchar_count), &len, in ReadBackupKey()
/external/chromium_org/components/breakpad/tools/
Dcrash_service.cc467 std::wstring sddl = L"S:(ML;;NW;;;S-1-16-4096)"; in GetSecurityDescriptorForLowIntegrity() local
476 if (::ConvertStringSecurityDescriptorToSecurityDescriptorW(sddl.c_str(), in GetSecurityDescriptorForLowIntegrity()