Home
last modified time | relevance | path

Searched refs:process_handle (Results 1 – 14 of 14) sorted by relevance

/third_party/libuv/src/win/
Dprocess.c146 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/
Dwait_for_exit.hpp27 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()
Dio_context_ref.hpp100 ::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()
Dterminate.hpp25 if (!::boost::winapi::TerminateProcess(p.process_handle(), EXIT_FAILURE)) in terminate()
Dis_running.hpp25 if (!::boost::winapi::GetExitCodeProcess(p.process_handle(), &code)) in is_running()
Dchild_handle.hpp73 process_handle_t process_handle() const { return proc_info.hProcess; } in process_handle() function
/third_party/node/src/
Ddebug_utils.cc433 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/
Dchild_handle.hpp50 process_handle_t process_handle() const { return pid; } in process_handle() function
/third_party/gn/src/base/win/
Dscoped_process_information.h50 HANDLE process_handle() const { return process_handle_.Get(); } in process_handle() function
Dscoped_process_information.cc76 if (CheckAndDuplicateHandle(other.process_handle(), &process_handle_) && in DuplicateFrom()
/third_party/gn/src/gn/
Dexec_process.cc133 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/
Dchild_decl.hpp98 native_handle_t native_handle() const { return _child_handle.process_handle(); } in native_handle()
/third_party/libuv/include/uv/
Dwin.h605 HANDLE process_handle; \
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch2305 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 =