Lines Matching defs:process
369 "Create a new process and its primary thread.\n"
378 "The return value is a tuple of the process handle, thread handle,\n"
379 "process ID, and thread ID.");
507 "Return a handle object for the current process.");
535 "GetExitCodeProcess($module, process, /)\n"
538 "Return the termination status of the specified process.");
544 _winapi_GetExitCodeProcess_impl(PyObject *module, HANDLE process);
550 HANDLE process;
553 if (!PyArg_Parse(arg, "" F_HANDLE ":GetExitCodeProcess", &process)) {
556 _return_value = _winapi_GetExitCodeProcess_impl(module, process);
599 "The module must have been loaded by the current process.\n"
604 "of the current process.");
971 "Terminate the specified process and all of its threads.");