Searched defs:sddl (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/remoting/host/win/
H A Dcom_security.cc20 std::string sddl = security_descriptor; local
22 sddl += mandatory_label;
26 ScopedSd relative_sd = ConvertSddlToSd(sddl);
H A Dsecurity_descriptor.cc7 #include <sddl.h>
14 ScopedSd ConvertSddlToSd(const std::string& sddl) { argument
18 UTF8ToUTF16(sddl).c_str(), SDDL_REVISION_1, &raw_sd, &length)) {
/external/chromium_org/sandbox/win/src/
H A Drestricted_token_utils.cc6 #include <sddl.h>
239 std::wstring sddl = L"S:("; // SDDL for a SACL. local
240 sddl += SDDL_MANDATORY_LABEL; // Ace Type is "Mandatory Label".
241 sddl += L";;"; // No Ace Flags.
242 sddl += ace_access; // Add the ACE access.
243 sddl += L";;;"; // No ObjectType and Inherited Object Type.
244 sddl += integrity_level_sid; // Trustee Sid.
245 sddl += L")";
254 if (::ConvertStringSecurityDescriptorToSecurityDescriptorW(sddl.c_str(),
/external/chromium_org/chrome/installer/util/
H A Duser_experiment.cc8 #include <sddl.h>
148 // and dirty way: a) read the DACL b) convert it to sddl string c) add the
149 // new ACE to the string d) convert sddl string back to DACL and finally
158 wchar_t* sddl = 0; local
160 SDDL_REVISION_1, DACL_SECURITY_INFORMATION, &sddl, NULL))
162 string16 new_sddl(sddl);
163 ::LocalFree(sddl);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_named_pipe.c20 /* mingw-w32api v3.1 does not yet include sddl.h, so define needed parts here
38 #include <sddl.h>
386 const char *sddl = NULL; local
390 sddl = params + 5;
391 if (!sddl) {
392 sddl = os_strstr(params, " SDDL=");
393 if (sddl)
394 sddl += 6;
397 if (!sddl)
400 wpa_printf(MSG_DEBUG, "CTRL: SDDL='%s'", sddl);
[all...]
/external/chromium_org/chrome/tools/crash_service/
H A Dcrash_service.cc9 #include <sddl.h>
488 std::wstring sddl = L"S:(ML;;NW;;;S-1-16-4096)"; local
497 if (::ConvertStringSecurityDescriptorToSecurityDescriptorW(sddl.c_str(),
/external/chromium_org/chrome_frame/
H A Dchrome_tab.cc473 std::wstring sddl; local
474 if (!ReadBackupKey(&sddl))
479 if (!sd.FromString(sddl.c_str()))
500 bool ReadBackupKey(std::wstring* sddl) { argument
515 if (backup_key.ReadValue(NULL, WriteInto(sddl, wchar_count), &len,

Completed in 164 milliseconds