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

  /external/chromium_org/chromeos/process_proxy/
process_proxy.cc 75 if (pipe(shutdown_pipe_))
93 shutdown_pipe_[PIPE_END_READ],
98 shutdown_pipe_[PIPE_END_READ] = -1;
136 return base::WriteFileDescriptor(shutdown_pipe_[PIPE_END_WRITE],
242 CloseFdPair(shutdown_pipe_);
260 ClearFdPair(shutdown_pipe_);
process_proxy.h 92 int shutdown_pipe_[2]; member in class:chromeos::ProcessProxy
  /external/chromium_org/base/files/
file_path_watcher_linux.cc 81 int shutdown_pipe_[2]; member in class:base::__anon6853::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_[1])
    [all...]

Completed in 493 milliseconds