Searched refs:process_handle (Results 1 – 14 of 14) sorted by relevance
/third_party/libuv/src/win/ |
D | process.c | 146 handle->process_handle = INVALID_HANDLE_VALUE; in uv__process_init() 891 if (GetExitCodeProcess(handle->process_handle, &status)) { in uv__process_proc_exit() 932 CloseHandle(handle->process_handle); in uv__process_endgame() 1120 process->process_handle = info.hProcess; in uv_spawn() 1158 process->process_handle, exit_wait_callback, (void*)process, INFINITE, in uv_spawn() 1191 static int uv__kill(HANDLE process_handle, int signum) { in uv__kill() argument 1205 if (TerminateProcess(process_handle, 1)) in uv__kill() 1212 GetExitCodeProcess(process_handle, &status) && in uv__kill() 1224 if (!GetExitCodeProcess(process_handle, &status)) in uv__kill() 1243 if (process->process_handle == INVALID_HANDLE_VALUE) { in uv_process_kill() [all …]
|
/third_party/boost/boost/process/detail/windows/ |
D | wait_for_exit.hpp | 27 if (::boost::winapi::WaitForSingleObject(p.process_handle(), in wait() 32 else if (!::boost::winapi::GetExitCodeProcess(p.process_handle(), &_exit_code)) in wait() 63 wait_code = ::boost::winapi::WaitForSingleObject(p.process_handle(), in wait_until() 74 if (!::boost::winapi::GetExitCodeProcess(p.process_handle(), &_exit_code)) in wait_until()
|
D | io_context_ref.hpp | 100 ::boost::winapi::HANDLE_ process_handle; in on_success() 103 this_proc, proc_in, this_proc, &process_handle, 0, in on_success() 115 wait_handler wh(std::move(funcs), ios, process_handle, exec.exit_status); in on_success()
|
D | terminate.hpp | 25 if (!::boost::winapi::TerminateProcess(p.process_handle(), EXIT_FAILURE)) in terminate()
|
D | is_running.hpp | 25 if (!::boost::winapi::GetExitCodeProcess(p.process_handle(), &code)) in is_running()
|
D | child_handle.hpp | 73 process_handle_t process_handle() const { return proc_info.hProcess; } in process_handle() function
|
/third_party/node/src/ |
D | debug_utils.cc | 433 HANDLE process_handle = OpenProcess(PROCESS_QUERY_INFORMATION|PROCESS_VM_READ, in GetLoadedLibraries() local 435 if (process_handle == nullptr) { in GetLoadedLibraries() 443 if (EnumProcessModules(process_handle, nullptr, 0, &size_1)) { in GetLoadedLibraries() 447 if (EnumProcessModules(process_handle, modules.data, size_1, &size_2)) { in GetLoadedLibraries() 453 if (GetModuleFileNameExW(process_handle, in GetLoadedLibraries() 469 CloseHandle(process_handle); in GetLoadedLibraries()
|
/third_party/boost/boost/process/detail/posix/ |
D | child_handle.hpp | 50 process_handle_t process_handle() const { return pid; } in process_handle() function
|
/third_party/gn/src/base/win/ |
D | scoped_process_information.h | 50 HANDLE process_handle() const { return process_handle_.Get(); } in process_handle() function
|
D | scoped_process_information.cc | 76 if (CheckAndDuplicateHandle(other.process_handle(), &process_handle_) && in DuplicateFrom()
|
/third_party/gn/src/gn/ |
D | exec_process.cc | 133 WaitForSingleObject(proc_info.process_handle(), INFINITE); in ExecProcess() 136 GetExitCodeProcess(proc_info.process_handle(), &dw_exit_code); in ExecProcess()
|
/third_party/boost/boost/process/detail/ |
D | child_decl.hpp | 98 native_handle_t native_handle() const { return _child_handle.process_handle(); } in native_handle()
|
/third_party/libuv/include/uv/ |
D | win.h | 605 HANDLE process_handle; \
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 2305 diff --git a/src/base/process/process_handle.cc b/src/base/process/process_handle.cc 2307 --- a/src/base/process/process_handle.cc 2308 +++ b/src/base/process/process_handle.cc 2319 diff --git a/src/base/process/process_handle.h b/src/base/process/process_handle.h 2321 --- a/src/base/process/process_handle.h 2322 +++ b/src/base/process/process_handle.h 47327 base::ProcessHandle process_handle =
|