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

  /external/chromium_org/ipc/
ipc_channel_posix.cc 192 fd_pipe_(-1),
325 if (!SocketPair(&fd_pipe_, &remote_fd_pipe_)) {
447 // fd_pipe_ which makes Seccomp sandbox operation more efficient.
450 fd_written = fd_pipe_;
451 bytes_written = HANDLE_EINTR(sendmsg(fd_pipe_, &msgh, MSG_DONTWAIT));
595 if (fd_pipe_ != -1) {
596 if (IGNORE_EINTR(close(fd_pipe_)) < 0)
597 PLOG(ERROR) << "close fd_pipe_ " << pipe_name_;
598 fd_pipe_ = -1;
800 if (fd_pipe_ >= 0)
    [all...]
ipc_channel_posix.h 111 // Reads the next message from the fd_pipe_ and appends them to the
166 int fd_pipe_; member in class:IPC::ChannelPosix

Completed in 457 milliseconds