Home | History | Annotate | Download | only in process

Lines Matching refs:HANDLE

21 // handle to a process.
24 typedef HANDLE ProcessHandle;
26 typedef HANDLE UserTokenHandle;
43 // Converts a PID to a process handle. This handle must be closed by
45 BASE_EXPORT bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle);
47 // Converts a PID to a process handle. On Windows the handle is opened
49 // You have to close returned handle using CloseProcessHandle. Returns true
54 ProcessHandle* handle);
56 // Converts a PID to a process handle using the desired access flags. Use a
60 ProcessHandle* handle);
62 // Closes the process handle opened by OpenProcessHandle.