Searched defs:ProcessHandle (Results 1 - 2 of 2) sorted by relevance

/external/chromium/base/
H A Dprocess.h20 // ProcessHandle is a platform specific type which represents the underlying OS
24 typedef HANDLE ProcessHandle; typedef in namespace:base
27 const ProcessHandle kNullProcessHandle = NULL;
30 // On POSIX, our ProcessHandle will just be the PID.
31 typedef pid_t ProcessHandle;
33 const ProcessHandle kNullProcessHandle = 0;
51 explicit Process(ProcessHandle handle) : process_(handle) {
62 ProcessHandle handle() const { return process_; }
63 void set_handle(ProcessHandle handle) {
100 ProcessHandle process
[all...]
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp156 struct ProcessHandle : CommonHandle {}; struct in namespace:__anon9295
163 typedef ScopedHandle<ProcessHandle> ProcessScopedHandle;

Completed in 68 milliseconds