Lines Matching refs:ProcessHandle
21 // ProcessHandle is a platform specific type which represents the underlying OS
25 typedef HANDLE ProcessHandle;
28 const ProcessHandle kNullProcessHandle = NULL;
31 // On POSIX, our ProcessHandle will just be the PID.
32 typedef pid_t ProcessHandle;
34 const ProcessHandle kNullProcessHandle = 0;
60 // Returns the ProcessHandle of the current process.
61 BASE_EXPORT ProcessHandle GetCurrentProcessHandle();
69 BASE_EXPORT ProcessId GetProcId(ProcessHandle process);
72 BASE_EXPORT ProcessId GetParentProcessId(ProcessHandle process);
76 BASE_EXPORT FilePath GetProcessExecutablePath(ProcessHandle process);