Searched defs:sddl (Results 1 - 6 of 6) 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 base::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>
240 base::string16 sddl = L"S:("; // SDDL for a SACL. local
241 sddl += SDDL_MANDATORY_LABEL; // Ace Type is "Mandatory Label".
242 sddl += L";;"; // No Ace Flags.
243 sddl += ace_access; // Add the ACE access.
244 sddl += L";;;"; // No ObjectType and Inherited Object Type.
245 sddl += integrity_level_sid; // Trustee Sid.
246 sddl += L")";
255 if (::ConvertStringSecurityDescriptorToSecurityDescriptorW(sddl.c_str(),
/external/chromium_org/chrome/installer/util/
H A Duser_experiment.cc8 #include <sddl.h>
154 // and dirty way: a) read the DACL b) convert it to sddl string c) add the
155 // new ACE to the string d) convert sddl string back to DACL and finally
164 wchar_t* sddl = 0; local
166 SDDL_REVISION_1, DACL_SECURITY_INFORMATION, &sddl, NULL))
168 base::string16 new_sddl(sddl);
169 ::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/components/crash/tools/
H A Dcrash_service.cc9 #include <sddl.h>
467 std::wstring sddl = L"S:(ML;;NW;;;S-1-16-4096)"; local
476 if (::ConvertStringSecurityDescriptorToSecurityDescriptorW(sddl.c_str(),

Completed in 172 milliseconds