HomeSort by: relevance | last modified time | path
    Searched defs:hProcess (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/lib/roken/
simple_exec_w32.c 74 HANDLE hProcess;
79 hProcess = OpenProcess(SYNCHRONIZE, FALSE, pid);
81 if (hProcess == NULL) {
88 wrv = WaitForSingleObject(hProcess, dtimeout);
94 GetExitCodeProcess(hProcess, &prv);
107 if (TerminateProcess(hProcess, 128 + 9)) {
135 CloseHandle(hProcess);
243 pi.hProcess = NULL;
320 if (pi.hProcess) CloseHandle(pi.hProcess);
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
expand_path.c 163 HANDLE hProcess = GetCurrentProcess();
166 if (!OpenProcessToken(hProcess, TOKEN_QUERY, &hToken))
  /src/external/gpl2/gmake/dist/w32/subproc/
sub_proc.c 565 pproc->pid = (int)procInfo.hProcess;
1195 HANDLE hProcess;
1238 hProcess = process_init_fd(hIn, hOut, hErr);
1240 if (process_begin(hProcess, argv, envp, argv[0], NULL)) {
1243 if (!((sub_process*) hProcess)->last_err)
1244 ((sub_process*) hProcess)->last_err = -1;
1245 ((sub_process*) hProcess)->exit_code = process_last_err(hProcess);
1253 process_register(hProcess);
1255 return hProcess;
    [all...]
  /src/external/gpl2/gmake/dist/
function.c 1446 HANDLE hProcess;
1478 hProcess = process_init_fd(hIn, hChildOutWr, hErr);
1480 if (!hProcess)
1486 if (!process_begin(hProcess, command_argv, envp, command_argv[0], NULL)) {
1488 process_register(hProcess);
1491 *pid_p = (int) hProcess;
1500 process_cleanup(hProcess);
  /src/external/public-domain/sqlite/dist/autosetup/
jimsh0.c 6297 HANDLE hProcess;
6308 hProcess = GetCurrentProcess();
6322 DuplicateHandle(hProcess, (HANDLE)_get_osfhandle(inputId), hProcess, &startInfo.hStdInput,
6331 DuplicateHandle(hProcess, (HANDLE)_get_osfhandle(outputId), hProcess, &startInfo.hStdOutput,
6341 DuplicateHandle(hProcess, (HANDLE)_get_osfhandle(errorId), hProcess, &startInfo.hStdError,
6364 WaitForInputIdle(procInfo.hProcess, 5000);
6367 phandle = procInfo.hProcess;
    [all...]
  /src/external/public-domain/sqlite/dist/
shell.c 24737 static HANDLE hProcess;
24757 hProcess = GetCurrentProcess();
24758 if( hProcess ){
24781 getProcessTimesAddr(hProcess,&ftCreation,&ftExit,
24811 getProcessTimesAddr(hProcess,&ftCreation,&ftExit,&ftKernelEnd,&ftUserEnd);
    [all...]

Completed in 40 milliseconds