/external/chromium_org/sandbox/win/src/ |
process_thread_policy.cc | 120 HANDLE local_handle; local 121 NTSTATUS status = NtOpenThread(&local_handle, desired_access, &attributes, 124 if (!::DuplicateHandle(::GetCurrentProcess(), local_handle, 127 ::CloseHandle(local_handle); 152 HANDLE local_handle; local 153 NTSTATUS status = NtOpenProcess(&local_handle, desired_access, &attributes, 156 if (!::DuplicateHandle(::GetCurrentProcess(), local_handle, 159 ::CloseHandle(local_handle); 178 HANDLE local_handle; 180 &local_handle); [all...] |
sync_policy.cc | 203 HANDLE local_handle = NULL; local 204 status = NtCreateEvent(&local_handle, EVENT_ALL_ACCESS, &object_attributes, 206 if (NULL == local_handle) 209 if (!::DuplicateHandle(::GetCurrentProcess(), local_handle, 240 HANDLE local_handle = NULL; local 241 status = NtOpenEvent(&local_handle, desired_access, &object_attributes); 242 if (NULL == local_handle) 245 if (!::DuplicateHandle(::GetCurrentProcess(), local_handle,
|
filesystem_policy.cc | 34 HANDLE local_handle = INVALID_HANDLE_VALUE; local 35 NTSTATUS status = NtCreateFile(&local_handle, desired_access, obj_attributes, 43 if (!sandbox::SameObject(local_handle, obj_attributes->ObjectName->Buffer)) { 45 ::CloseHandle(local_handle); 49 if (!::DuplicateHandle(::GetCurrentProcess(), local_handle, 357 HANDLE local_handle = NULL; local 359 ::GetCurrentProcess(), &local_handle, 0, FALSE, 365 base::win::ScopedHandle handle(local_handle); 369 *nt_status = NtSetInformationFile(local_handle, io_block, file_info, length,
|
registry_policy.cc | 71 HANDLE local_handle = INVALID_HANDLE_VALUE; local 72 NTSTATUS status = NtCreateKey(&local_handle, desired_access, obj_attributes, 78 if (!::DuplicateHandle(::GetCurrentProcess(), local_handle, 99 HANDLE local_handle = INVALID_HANDLE_VALUE; local 100 NTSTATUS status = NtOpenKey(&local_handle, desired_access, obj_attributes); 105 if (!::DuplicateHandle(::GetCurrentProcess(), local_handle,
|
/hardware/qcom/audio/legacy/alsa_sound/ |
AudioUsbALSA.h | 109 status_t setHardwareParams(pcm *local_handle, uint32_t sampleRate, uint32_t channels, int periodSize);
|