Home
last modified time | relevance | path

Searched refs:process_handle (Results 1 – 7 of 7) 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/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/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/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/libuv/include/uv/
Dwin.h605 HANDLE process_handle; \
/third_party/chromium/patch/
D0003-ohos-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
51136 base::ProcessHandle process_handle =