Home | History | Annotate | Download | only in process

Lines Matching full:process

22 // handle to a process.
23 // ProcessId is a number which identifies the process in the OS.
38 // Returns the id of the current process.
43 // Returns a unique ID for the current process. The ID will be unique across all
46 // a process's PID.
50 // When a process is started in a different PID namespace from the browser
51 // process, this function must be called with the process's PID in the browser's
54 // should only be called very early after process startup - ideally as soon
55 // after process creation as possible.
60 // Returns the ProcessHandle of the current process.
63 // Returns the process ID for the specified process. This is functionally the
66 // DEPRECATED. New code should be using Process::Pid() instead.
69 BASE_EXPORT ProcessId GetProcId(ProcessHandle process);
71 // Returns the ID for the parent of the given process.
72 BASE_EXPORT ProcessId GetParentProcessId(ProcessHandle process);
75 // Returns the path to the executable of the given process.
76 BASE_EXPORT FilePath GetProcessExecutablePath(ProcessHandle process);