Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dsubprocess.cc66 child_handle_(NULL), child_stdin_(NULL), child_stdout_(NULL) {} in Subprocess()
133 child_handle_ = process_info.hProcess; in Start()
155 GOOGLE_CHECK(child_handle_ != NULL) << "Must call Start() first."; in Communicate()
227 DWORD wait_result = WaitForSingleObject(child_handle_, INFINITE); in Communicate()
238 if (!GetExitCodeProcess(child_handle_, &exit_code)) { in Communicate()
243 CloseHandleOrDie(child_handle_); in Communicate()
244 child_handle_ = NULL; in Communicate()
Dsubprocess.h86 HANDLE child_handle_; variable