/external/llvm-project/lldb/source/Host/windows/ |
D | HostProcessWindows.cpp | 26 HANDLE process_handle; member 93 &info->process_handle, 0, FALSE, DUPLICATE_SAME_ACCESS)) { in StartMonitoring() 107 ::WaitForSingleObject(info->process_handle, INFINITE); in MonitorThread() 108 ::GetExitCodeProcess(info->process_handle, &exit_code); in MonitorThread() 109 info->callback(::GetProcessId(info->process_handle), true, 0, exit_code); in MonitorThread() 110 ::CloseHandle(info->process_handle); in MonitorThread()
|
/external/google-breakpad/src/client/windows/crash_generation/ |
D | minidump_generator.cc | 58 bool CollectHandleData(HANDLE process_handle, 69 static bool ReadExceptionCode(HANDLE process_handle, 116 HANDLE process_handle, in CollectHandleData() argument 119 if (!ReadExceptionCode(process_handle, exception_pointers, &exception_code)) { in CollectHandleData() 146 if (enumerate_resource_(process_handle, in CollectHandleData() 203 HANDLE process_handle, in ReadExceptionCode() argument 207 if (!ReadProcessMemory(process_handle, in ReadExceptionCode() 215 if (!ReadProcessMemory(process_handle, in ReadExceptionCode() 253 const HANDLE process_handle, in MinidumpGenerator() argument 265 process_handle_(process_handle), in MinidumpGenerator()
|
D | crash_generation_server.cc | 616 DuplicateHandle(client_info.process_handle(), // hSourceProcessHandle in PrepareReply() 627 DuplicateHandle(client_info.process_handle(), // hSourceProcessHandle in PrepareReply() 638 DuplicateHandle(client_info.process_handle(), // hSourceProcessHandle in PrepareReply() 656 client_info.process_handle(), in CreateClientHandles() 666 client_info.process_handle(), in CreateClientHandles() 676 client_info.process_handle(), in CreateClientHandles() 788 client_info->process_handle(), in AddClient() 902 assert(client.process_handle()); in GenerateDump() 917 client.process_handle(), in GenerateDump()
|
D | client_info.h | 65 HANDLE process_handle() const { return process_handle_; } in process_handle() function
|
D | minidump_generator.h | 57 const HANDLE process_handle,
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/ |
D | WindowsMiniDump.cpp | 29 HANDLE process_handle = ::OpenProcess( in SaveMiniDump() local 45 ::MiniDumpWriteDump(process_handle, process_sp->GetID(), file_handle, in SaveMiniDump() 48 ::CloseHandle(process_handle); in SaveMiniDump()
|
/external/libchrome/mojo/core/ |
D | node_channel.cc | 74 uint32_t process_handle; member 220 void NodeChannel::SetRemoteProcessHandle(ScopedProcessHandle process_handle) { in SetRemoteProcessHandle() argument 225 channel_->set_remote_process(process_handle.Clone()); in SetRemoteProcessHandle() 230 remote_process_handle_ = std::move(process_handle); in SetRemoteProcessHandle() 283 ScopedProcessHandle process_handle) { in AddBrokerClient() argument 287 handles.emplace_back(base::win::ScopedHandle(process_handle.release())); in AddBrokerClient() 295 data->process_handle = process_handle.get(); in AddBrokerClient() 514 data->process_handle); in OnChannelMessage()
|
D | node_channel.h | 43 base::ProcessHandle process_handle) = 0; 106 void SetRemoteProcessHandle(ScopedProcessHandle process_handle); 121 ScopedProcessHandle process_handle);
|
D | invitation_unittest.cc | 362 MojoPlatformProcessHandle process_handle; in SendInvitationToClient() local 363 process_handle.struct_size = sizeof(process_handle); in SendInvitationToClient() 365 process_handle.value = in SendInvitationToClient() 368 process_handle.value = static_cast<uint64_t>(process); in SendInvitationToClient() 389 MojoSendInvitation(invitation, &process_handle, &transport_endpoint, in SendInvitationToClient()
|
D | entrypoints.cc | 314 const MojoPlatformProcessHandle* process_handle, in MojoSendInvitationImpl() argument 319 return g_core->SendInvitation(invitation_handle, process_handle, in MojoSendInvitationImpl()
|
D | core.cc | 1283 const MojoPlatformProcessHandle* process_handle, in SendInvitation() argument 1292 if (process_handle) { in SendInvitation() 1293 if (process_handle->struct_size < sizeof(*process_handle)) in SendInvitation() 1297 static_cast<uintptr_t>(process_handle->value)); in SendInvitation() 1299 target_process = static_cast<base::ProcessHandle>(process_handle->value); in SendInvitation()
|
D | core.h | 324 const MojoPlatformProcessHandle* process_handle,
|
D | node_controller.h | 197 base::ProcessHandle process_handle) override;
|
D | node_controller.cc | 820 base::ProcessHandle process_handle) { in OnAddBrokerClient() argument 821 ScopedProcessHandle scoped_process_handle(process_handle); in OnAddBrokerClient()
|
/external/python/cpython2/Lib/multiprocessing/ |
D | reduction.py | 66 process_handle = win32.OpenProcess( 70 new_handle = duplicate(handle, process_handle) 73 close(process_handle)
|
D | forking.py | 274 Popen._tls.process_handle = int(hp) 279 del Popen._tls.process_handle 288 return duplicate(handle, Popen._tls.process_handle)
|
/external/libchrome/mojo/public/cpp/system/ |
D | invitation.cc | 63 MojoPlatformProcessHandle process_handle; in SendInvitation() local 64 ProcessHandleToMojoProcessHandle(target_process, &process_handle); in SendInvitation() 93 MojoSendInvitation(invitation.get().value(), &process_handle, &endpoint, in SendInvitation()
|
/external/webrtc/rtc_base/win/ |
D | windows_version.cc | 400 OSInfo::WOW64Status OSInfo::GetWOW64StatusForProcess(HANDLE process_handle) { in GetWOW64StatusForProcess() argument 403 if (!IsWow64Process(process_handle, &is_wow64)) in GetWOW64StatusForProcess() 411 if (!(*is_wow64_process)(process_handle, &is_wow64)) in GetWOW64StatusForProcess()
|
D | windows_version.h | 119 static WOW64Status GetWOW64StatusForProcess(HANDLE process_handle);
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ProcessWindows.cpp | 50 std::string GetProcessExecutableName(HANDLE process_handle) { in GetProcessExecutableName() argument 57 copied = ::GetModuleFileNameExW(process_handle, NULL, file_name.data(), in GetProcessExecutableName() 68 HANDLE process_handle = in GetProcessExecutableName() local 70 if (process_handle != NULL) { in GetProcessExecutableName() 71 file_name = GetProcessExecutableName(process_handle); in GetProcessExecutableName() 72 ::CloseHandle(process_handle); in GetProcessExecutableName()
|
/external/libchrome/mojo/public/cpp/base/ |
D | process_id.typemap | 6 public_headers = [ "//base/process/process_handle.h" ]
|
/external/libchrome/mojo/public/c/system/ |
D | invitation.h | 409 const struct MojoPlatformProcessHandle* process_handle,
|
D | thunks.cc | 438 const MojoPlatformProcessHandle* process_handle, in MojoSendInvitation() argument 443 return INVOKE_THUNK(SendInvitation, invitation_handle, process_handle, in MojoSendInvitation()
|
D | thunks.h | 206 const struct MojoPlatformProcessHandle* process_handle,
|
/external/openscreen/third_party/chromium_quic/build/base/ |
D | BUILD.gn | 278 "../../src/base/process/process_handle.cc", 279 "../../src/base/process/process_handle.h",
|