HomeSort by relevance Sort by last modified time
    Searched defs:desired_access (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/remoting/tools/
breakpad_tester_win.cc 62 DWORD desired_access = PROCESS_CREATE_THREAD | PROCESS_QUERY_INFORMATION | local
65 process.Set(OpenProcess(desired_access, FALSE, pid));
  /development/host/windows/usb/api/
adb_legacy_endpoint_object.cpp 196 ULONG desired_access; local
200 &desired_access, &desired_sharing)) {
206 desired_access,
  /external/chromium_org/remoting/host/
daemon_process_win.cc 215 DWORD desired_access = SERVICE_CHANGE_CONFIG | SERVICE_QUERY_STATUS; local
217 OpenService(scmanager, kWindowsServiceName, desired_access));
  /external/chromium/chrome/common/
zip.cc 117 DWORD desired_access, creation_disposition; local
122 desired_access = share_mode = flags_and_attributes = 0;
125 desired_access = GENERIC_READ;
129 desired_access = GENERIC_WRITE | GENERIC_READ;
132 desired_access = GENERIC_WRITE | GENERIC_READ;
137 if ((filename != NULL) && (desired_access != 0)) {
138 file = CreateFile(filename_wstr.c_str(), desired_access, share_mode,
  /external/chromium_org/chrome/test/chromedriver/chrome/
zip_internal.cc 38 DWORD desired_access, creation_disposition; local
43 desired_access = share_mode = flags_and_attributes = 0;
46 desired_access = GENERIC_READ;
50 desired_access = GENERIC_WRITE | GENERIC_READ;
53 desired_access = GENERIC_WRITE | GENERIC_READ;
58 if ((filename != NULL) && (desired_access != 0)) {
59 file = CreateFile(filename16.c_str(), desired_access, share_mode,
  /external/chromium_org/remoting/host/win/
launch_process_with_token.cc 123 // The returned handle will have |desired_access| rights.
124 bool CopyProcessToken(DWORD desired_access, ScopedHandle* token_out) {
127 TOKEN_DUPLICATE | desired_access,
135 desired_access,
151 DWORD desired_access = TOKEN_ADJUST_PRIVILEGES | TOKEN_IMPERSONATE | local
153 if (!CopyProcessToken(desired_access, &privileged_token)) {
186 // the SDK. |desired_access| below is effectively PROCESS_ALL_ACCESS from
188 DWORD desired_access = local
204 OpenProcess(desired_access,
216 // the SDK. |desired_access| below is effectively THREAD_ALL_ACCESS fro
218 DWORD desired_access = local
414 DWORD desired_access = TOKEN_ADJUST_DEFAULT | TOKEN_ADJUST_SESSIONID | local
    [all...]
unprivileged_process_delegate.cc 159 DWORD desired_access = local
170 desired_access, &security_attributes));
182 desired_access = DESKTOP_READOBJECTS | DESKTOP_CREATEWINDOW |
194 handles.SetDesktop(CreateDesktop(L"Default", NULL, NULL, 0, desired_access,
404 DWORD desired_access = local
411 desired_access,
wts_session_process_delegate.cc 323 DWORD desired_access = local
325 ScopedHandle worker_process(OpenProcess(desired_access, false, pid));
514 DWORD desired_access = local
521 desired_access,
elevated_controller.cc 521 DWORD desired_access = SERVICE_CHANGE_CONFIG | SERVICE_QUERY_STATUS | local
524 ::OpenServiceW(scmanager, kWindowsServiceName, desired_access));
  /external/chromium_org/third_party/zlib/google/
zip_internal.cc 38 DWORD desired_access, creation_disposition; local
43 desired_access = share_mode = flags_and_attributes = 0;
46 desired_access = GENERIC_READ;
50 desired_access = GENERIC_WRITE | GENERIC_READ;
53 desired_access = GENERIC_WRITE | GENERIC_READ;
58 if ((filename != NULL) && (desired_access != 0)) {
59 file = CreateFile(filename16.c_str(), desired_access, share_mode,

Completed in 227 milliseconds