HomeSort by relevance Sort by last modified time
    Searched refs:ProcessHandle (Results 1 - 16 of 16) sorted by null

  /external/chromium/base/
process.h 18 // ProcessHandle is a platform specific type which represents the underlying OS
22 typedef HANDLE ProcessHandle;
25 const ProcessHandle kNullProcessHandle = NULL;
27 // On POSIX, our ProcessHandle will just be the PID.
28 typedef pid_t ProcessHandle;
30 const ProcessHandle kNullProcessHandle = 0;
47 explicit Process(ProcessHandle handle) : process_(handle) {
58 ProcessHandle handle() const { return process_; }
59 void set_handle(ProcessHandle handle) {
96 ProcessHandle process_
    [all...]
multiprocess_test.h 63 base::ProcessHandle SpawnChild(const std::wstring& procname) {
67 base::ProcessHandle SpawnChild(const std::wstring& procname,
78 base::ProcessHandle SpawnChild(
97 base::ProcessHandle SpawnChildImpl(const std::wstring& procname,
99 base::ProcessHandle handle = static_cast<base::ProcessHandle>(NULL);
108 base::ProcessHandle SpawnChildImpl(
112 base::ProcessHandle handle = base::kNullProcessHandle;
process_util.h 72 // Returns the ProcessHandle of the current process.
73 ProcessHandle GetCurrentProcessHandle();
77 bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle);
83 bool OpenPrivilegedProcessHandle(ProcessId pid, ProcessHandle* handle);
86 void CloseProcessHandle(ProcessHandle process);
91 ProcessId GetProcId(ProcessHandle process);
95 ProcessId GetParentProcessId(ProcessHandle process);
98 FilePath GetProcessExecutablePath(ProcessHandle process);
142 bool wait, bool start_hidden, ProcessHandle* process_handle);
155 bool start_hidden, ProcessHandle* process_handle)
    [all...]
shared_memory.h 54 base::ProcessHandle process);
132 bool ShareToProcess(base::ProcessHandle process,
143 bool GiveToProcess(ProcessHandle process,
169 bool ShareToProcessCommon(ProcessHandle process,
process_util_posix.cc 41 int WaitpidWithTimeout(ProcessHandle handle, int64 wait_milliseconds,
105 ProcessHandle GetCurrentProcessHandle() {
109 bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle) {
116 bool OpenPrivilegedProcessHandle(ProcessId pid, ProcessHandle* handle) {
122 void CloseProcessHandle(ProcessHandle process) {
127 ProcessId GetProcId(ProcessHandle process) {
134 bool KillProcess(ProcessHandle process_id, int exit_code, bool wait) {
359 bool wait, ProcessHandle* process_handle) {
377 ProcessHandle* process_handle) {
458 bool wait, ProcessHandle* process_handle)
    [all...]
process_util_win.cc 87 ProcessHandle GetCurrentProcessHandle() {
91 bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle) {
95 ProcessHandle result = OpenProcess(PROCESS_DUP_HANDLE | PROCESS_TERMINATE,
105 bool OpenPrivilegedProcessHandle(ProcessId pid, ProcessHandle* handle) {
106 ProcessHandle result = OpenProcess(PROCESS_DUP_HANDLE |
120 void CloseProcessHandle(ProcessHandle process) {
124 ProcessId GetProcId(ProcessHandle process) {
142 bool wait, bool start_hidden, ProcessHandle* process_handle) {
171 bool start_hidden, ProcessHandle* process_handle) {
206 bool wait, bool start_hidden, ProcessHandle* process_handle)
    [all...]
shared_memory_win.cc 29 ProcessHandle process)
126 bool SharedMemory::ShareToProcessCommon(ProcessHandle process,
process_util_unittest.cc 48 ProcessHandle handle = this->SpawnChild(L"SimpleChildProcess");
70 ProcessHandle handle = this->SpawnChild(L"SlowChildProcess");
83 ProcessHandle handle = this->SpawnChild(L"SimpleChildProcess");
254 ProcessHandle handle = this->SpawnChild(L"ProcessUtilsLeakFDChildProcess",
trace_event.cc 31 base::ProcessHandle proc = base::GetCurrentProcessHandle();
shared_memory_posix.cc 50 ProcessHandle process)
261 bool SharedMemory::ShareToProcessCommon(ProcessHandle process,
process_util_linux.cc 46 ProcessId GetParentProcessId(ProcessHandle process) {
77 FilePath GetProcessExecutablePath(ProcessHandle process) {
shared_memory_unittest.cc 327 base::ProcessHandle handles[kNumTasks];
stats_table_unittest.cc 206 ProcessHandle procs[kMaxProcs];
  /external/chromium/net/socket/
ssl_test_util.h 111 base::ProcessHandle process_handle_;
  /external/chromium/net/disk_cache/
stress_cache.cc 45 base::ProcessHandle handle;
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 46 base::ProcessHandle handle;

Completed in 785 milliseconds