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

  /external/libbrillo/brillo/
process.cc 82 // info.child_fd_ is the 'child half' of the pipe, which gets dup2()ed into
84 // place, we can set info.child_fd_ to parent_fd and leave info.parent_fd_
86 info.child_fd_ = parent_fd;
167 i->second.child_fd_ = pipefds[0];
170 i->second.child_fd_ = pipefds[1];
179 fd == pipe.second.child_fd_ ||
248 if (i->second.child_fd_ == i->first)
250 HANDLE_EINTR(dup2(i->second.child_fd_, i->first));
256 if (i->second.child_fd_ == i->first)
258 IGNORE_EINTR(close(i->second.child_fd_));
    [all...]
process.h 190 PipeInfo() : parent_fd_(-1), child_fd_(-1), is_input_(false) {}
194 int child_fd_; member in struct:brillo::ProcessImpl::PipeInfo
  /external/libchrome/base/test/
multiprocess_test_android.cc 105 bool IsReady() const { return child_fd_ != -1; }
125 int child_fd_ = -1; member in class:base::__anon22870::LaunchHelper
204 child_fd_ = fd;
335 Send(child_fd_, reinterpret_cast<const MessageHeader*>(buffer.get()),
341 ssize_t resp_size = Recv(child_fd_, &response, &recv_fds);
354 Send(child_fd_, reinterpret_cast<const MessageHeader*>(&request),
359 ssize_t resp_size = Recv(child_fd_, &response, &recv_fds);

Completed in 647 milliseconds