Home
last modified time | relevance | path

Searched refs:hProcess (Results 1 – 15 of 15) sorted by relevance

/freebsd-12.1/contrib/subversion/subversion/libsvn_subr/
H A Dwin32_crashrpt_dll.h31 typedef BOOL (WINAPI * MINIDUMPWRITEDUMP)(HANDLE hProcess, DWORD ProcessId,
36 typedef BOOL (WINAPI * SYMINITIALIZE)(HANDLE hProcess, PSTR UserSearchPath,
42 typedef BOOL (WINAPI * SYMCLEANUP)(HANDLE hProcess);
44 typedef BOOL (WINAPI * SYMGETTYPEINFO)(HANDLE hProcess, DWORD64 ModBase,
48 typedef BOOL (WINAPI * SYMGETLINEFROMADDR64)(HANDLE hProcess, DWORD64 dwAddr,
51 typedef BOOL (WINAPI * SYMENUMSYMBOLS)(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
55 typedef BOOL (WINAPI * SYMSETCONTEXT)(HANDLE hProcess, PIMAGEHLP_STACK_FRAME StackFrame,
58 typedef BOOL (WINAPI * SYMFROMADDR)(HANDLE hProcess, DWORD64 Address,
61 typedef BOOL (WINAPI * STACKWALK64)(DWORD MachineType, HANDLE hProcess, HANDLE hThread,
68 typedef PVOID (WINAPI * SYMFUNCTIONTABLEACCESS64)(HANDLE hProcess, DWORD64 AddrBase);
[all …]
/freebsd-12.1/contrib/sqlite3/tea/win/
H A Dnmakehlp.c190 HANDLE hProcess, h, pipeThreads[2]; in CheckForCompilerFeature() local
193 hProcess = GetCurrentProcess(); in CheckForCompilerFeature()
216 DuplicateHandle(hProcess, h, hProcess, &si.hStdOutput, 0, TRUE, in CheckForCompilerFeature()
224 DuplicateHandle(hProcess, h, hProcess, &si.hStdError, 0, TRUE, in CheckForCompilerFeature()
276 WaitForInputIdle(pi.hProcess, 5000); in CheckForCompilerFeature()
291 CloseHandle(pi.hProcess); in CheckForCompilerFeature()
324 HANDLE hProcess, h, pipeThreads[2]; in CheckForLinkerFeature() local
327 hProcess = GetCurrentProcess(); in CheckForLinkerFeature()
350 DuplicateHandle(hProcess, h, hProcess, &si.hStdOutput, 0, TRUE, in CheckForLinkerFeature()
358 DuplicateHandle(hProcess, h, hProcess, &si.hStdError, 0, TRUE, in CheckForLinkerFeature()
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DSignals.inc110 typedef BOOL (__stdcall *PREAD_PROCESS_MEMORY_ROUTINE64)(HANDLE hProcess,
117 typedef DWORD64 (__stdcall *PGET_MODULE_BASE_ROUTINE64)(HANDLE hProcess,
120 typedef DWORD64 (__stdcall *PTRANSLATE_ADDRESS_ROUTINE64)(HANDLE hProcess,
240 while (fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
302 fSymInitialize(hProcess, NULL, TRUE);
313 if (!fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
344 if (!fSymGetModuleBase64(hProcess, PC)) {
357 if (!fSymGetSymFromAddr64(hProcess, PC, &dwDisp, symbol)) {
373 if (fSymGetLineFromAddr64(hProcess, PC, &dwLineDisp, &line)) {
833 HANDLE hProcess = GetCurrentProcess();
[all …]
H A DProgram.inc303 PI.Process = pi.hProcess;
320 if (AssignProcessToJobObject(hJob, pi.hProcess))
327 TerminateProcess(pi.hProcess, 1);
328 WaitForSingleObject(pi.hProcess, INFINITE);
/freebsd-12.1/contrib/libevent/test/
H A Dtinytest.c160 WaitForSingleObject(info.hProcess, INFINITE); in testcase_run_forked_()
161 GetExitCodeProcess(info.hProcess, &exitcode); in testcase_run_forked_()
162 CloseHandle(info.hProcess); in testcase_run_forked_()
/freebsd-12.1/contrib/ntp/sntp/libevent/test/
H A Dtinytest.c160 WaitForSingleObject(info.hProcess, INFINITE); in testcase_run_forked_()
161 GetExitCodeProcess(info.hProcess, &exitcode); in testcase_run_forked_()
162 CloseHandle(info.hProcess); in testcase_run_forked_()
/freebsd-12.1/crypto/heimdal/lib/krb5/
H A Dexpand_path.c162 HANDLE hProcess = GetCurrentProcess(); in _expand_userid() local
165 if (!OpenProcessToken(hProcess, TOKEN_QUERY, &hToken)) in _expand_userid()
/freebsd-12.1/contrib/compiler-rt/lib/builtins/
H A Dclear_cache.c22 uint32_t FlushInstructionCache(uintptr_t hProcess, void *lpBaseAddress,
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc270 CloseHandle(pi.hProcess); in StartSymbolizerSubprocess()
/freebsd-12.1/contrib/gdb/gdb/
H A Dwin32-nat.c1301 CloseHandle (current_event.u.CreateProcessInfo.hProcess); in get_child_debug_event()
1305 current_process_handle = current_event.u.CreateProcessInfo.hProcess; in get_child_debug_event()
1860 CloseHandle (pi.hProcess); in child_create_inferior()
H A Dwince-stub.c254 curproc = pi.hProcess; in create_process()
H A Dwince.c1416 current_process_handle = current_event.u.CreateProcessInfo.hProcess; in get_child_debug_event()
1763 current_process_handle = pi.hProcess; in child_create_inferior()
/freebsd-12.1/contrib/gcclibs/libiberty/
H A Dpex-win32.c608 return (long) pi->hProcess; in win32_spawn()
/freebsd-12.1/contrib/googletest/googletest/src/
H A Dgtest-death-test.cc798 child_handle_.Reset(process_info.hProcess); in AssumeRole()
/freebsd-12.1/contrib/sqlite3/
H A Dshell.c312 static HANDLE hProcess; variable
333 hProcess = GetCurrentProcess(); in hasTimer()
334 if( hProcess ){ in hasTimer()
356 getProcessTimesAddr(hProcess,&ftCreation,&ftExit, in beginTimer()
376 getProcessTimesAddr(hProcess,&ftCreation,&ftExit,&ftKernelEnd,&ftUserEnd); in endTimer()