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

/external/chromium_org/chromeos/process_proxy/
H A Dprocess_proxy.h92 int shutdown_pipe_[2]; member in class:chromeos::ProcessProxy
/external/chromium_org/base/files/
H A Dfile_path_watcher_linux.cc81 int shutdown_pipe_[2]; member in class:base::__anon2252::InotifyReader
261 shutdown_pipe_[0] = -1;
262 shutdown_pipe_[1] = -1;
263 if (inotify_fd_ >= 0 && pipe(shutdown_pipe_) == 0 && thread_.Start()) {
266 Bind(&InotifyReaderCallback, this, inotify_fd_, shutdown_pipe_[0]));
275 ssize_t ret = HANDLE_EINTR(write(shutdown_pipe_[1], "", 1));
282 if (shutdown_pipe_[0] >= 0)
283 close(shutdown_pipe_[0]);
284 if (shutdown_pipe_[1] >= 0)
285 close(shutdown_pipe_[
[all...]

Completed in 251 milliseconds