HomeSort by relevance Sort by last modified time
    Searched full:sddl (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/remoting/host/win/
com_security.cc 20 std::string sddl = security_descriptor; local
22 sddl += mandatory_label;
25 // Convert the SDDL description into a security descriptor in absolute format.
26 ScopedSd relative_sd = ConvertSddlToSd(sddl);
com_security.h 10 // Concatenates ACE type, permissions and sid given as SDDL strings into an ACE
11 // definition in SDDL form.
16 // permission bits that is used in the SDDL definition below.
security_descriptor.h 20 // Converts an SDDL string into a binary self-relative security descriptor.
21 ScopedSd ConvertSddlToSd(const std::string& sddl);
security_descriptor.cc 7 #include <sddl.h>
14 ScopedSd ConvertSddlToSd(const std::string& sddl) {
18 UTF8ToUTF16(sddl).c_str(), SDDL_REVISION_1, &raw_sd, &length)) {
unprivileged_process_delegate.cc 11 #include <sddl.h>
115 // Format the security descriptors in SDDL form.
chromoting_module.cc 7 #include <sddl.h>
host_service.cc 10 #include <sddl.h>
wts_session_process_delegate.cc 111 // Security descriptor (as SDDL) to be applied to |channel_|.
  /external/chromium_org/sandbox/win/src/
restricted_token_utils.cc 6 #include <sddl.h>
238 // Build the SDDL string for the label.
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")"
    [all...]
acl.cc 8 #include <sddl.h>
app_container.cc 7 #include <Sddl.h>
  /external/chromium_org/rlz/win/lib/
lib_mutex.cc 10 #include <Sddl.h> // For SDDL_REVISION_1, ConvertStringSecurityDescript..
30 // The LABEL_SECURITY_INFORMATION SDDL SACL to be set for low integrity.
machine_id_win.cc 6 #include <Sddl.h> // For ConvertSidToStringSidW.
process_info.cc 10 #include <Sddl.h> // For ConvertSidToStringSid.
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_named_pipe.c 20 /* 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
389 if (os_strncmp(params, "SDDL=", 5) == 0)
390 sddl = params + 5;
391 if (!sddl) {
392 sddl = os_strstr(params, " SDDL=");
393 if (sddl)
394 sddl += 6
    [all...]
README-Windows.txt 200 Example SDDL string formats:
204 ctrl_interface=SDDL=D:(A;;GA;;;BA)
214 ctrl_interface=SDDL=D:(A;;GA;;;BA)(A;;GA;;;PU)
222 ctrl_interface=SDDL=D:(A;;GA;;;AU)
232 ctrl_interface=SDDL=D:(A;;GA;;;BU)(A;;GA;;;AN)
  /external/chromium_org/chrome/installer/util/
user_experiment.cc 8 #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);
165 // See MSDN for the security descriptor definition language (SDDL) syntax,
  /external/chromium_org/chrome/tools/crash_service/
crash_service.cc 9 #include <sddl.h>
487 // Build the SDDL string for the label.
488 std::wstring sddl = L"S:(ML;;NW;;;S-1-16-4096)"; local
497 if (::ConvertStringSecurityDescriptorToSecurityDescriptorW(sddl.c_str(),
  /external/chromium_org/chrome_frame/
crash_server_init.cc 7 #include <sddl.h>
dll_redirector.cc 10 #include <sddl.h>
73 // Set the SACL from an SDDL string that allows access to low-integrity
chrome_tab.cc 473 std::wstring sddl; local
474 if (!ReadBackupKey(&sddl))
479 if (!sd.FromString(sddl.c_str()))
499 // Read SDDL string from backup key
500 bool ReadBackupKey(std::wstring* sddl) {
515 if (backup_key.ReadValue(NULL, WriteInto(sddl, wchar_count), &len,
    [all...]
  /external/chromium_org/remoting/host/installer/win/
chromoting.wxs 44 The long hex value(s) below are security descriptors generated from SDDL
47 $sddl = "<SDDL definition goes here>"
48 $i = ([wmiclass]"Win32_SecurityDescriptorHelper").SDDLToBinarySD($sddl).BinarySD
58 $sddl = "O:BAG:BAD:(A;;0xb;;;SY)(A;;0xb;;;BA)(A;;0xb;;;LS)S:(ML;;NX;;;ME)"
  /external/chromium/base/win/
win_util.cc 11 #include <sddl.h>
  /external/chromium_org/base/win/
win_util.cc 14 #include <sddl.h>
  /external/chromium_org/remoting/host/
desktop_session_win.cc 8 #include <sddl.h>

Completed in 479 milliseconds

1 2