Searched refs:shutdown_pipe_ (Results 1 – 1 of 1) sorted by relevance
78 int shutdown_pipe_[2]; member in base::files::__anonf3f2daaf0111::InotifyReader224 shutdown_pipe_[0] = -1; in InotifyReader()225 shutdown_pipe_[1] = -1; in InotifyReader()226 if (inotify_fd_ >= 0 && pipe(shutdown_pipe_) == 0 && thread_.Start()) { in InotifyReader()228 FROM_HERE, new InotifyReaderTask(this, inotify_fd_, shutdown_pipe_[0])); in InotifyReader()237 ssize_t ret = HANDLE_EINTR(write(shutdown_pipe_[1], "", 1)); in ~InotifyReader()244 if (shutdown_pipe_[0] >= 0) in ~InotifyReader()245 close(shutdown_pipe_[0]); in ~InotifyReader()246 if (shutdown_pipe_[1] >= 0) in ~InotifyReader()247 close(shutdown_pipe_[1]); in ~InotifyReader()