Lines Matching refs:HANDLE
21 // handle to a process.
24 typedef HANDLE ProcessHandle;
26 typedef HANDLE UserTokenHandle;
51 explicit Process(ProcessHandle handle) : process_(handle) {
57 // A handle to the current process.
60 // Get/Set the handle for this process. The handle will be 0 if the process
62 ProcessHandle handle() const { return process_; }
63 void set_handle(ProcessHandle handle) {
64 process_ = handle;
76 // Close the process handle. This will not terminate the process.