Home
last modified time | relevance | path

Searched refs:child_process_handle_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/mojo/shell/
Dchild_process_host.cc30 child_process_handle_(base::kNullProcessHandle) { in ChildProcessHost()
37 if (child_process_handle_ != base::kNullProcessHandle) { in ~ChildProcessHost()
39 base::CloseProcessHandle(child_process_handle_); in ~ChildProcessHost()
40 child_process_handle_ = base::kNullProcessHandle; in ~ChildProcessHost()
45 DCHECK_EQ(child_process_handle_, base::kNullProcessHandle); in Start()
57 DCHECK_NE(child_process_handle_, base::kNullProcessHandle); in Join()
60 LOG_IF(ERROR, !base::WaitForExitCode(child_process_handle_, &rv)) in Join()
62 child_process_handle_ = base::kNullProcessHandle; in Join()
93 if (!base::LaunchProcess(child_command_line, options, &child_process_handle_)) in DoLaunch()
Dchild_process_host.h70 base::ProcessHandle child_process_handle_; variable