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

  /external/chromium_org/ipc/
ipc_channel_nacl.cc 225 input_fds_.insert(input_fds_.end(),
344 CHECK(header_fds == input_fds_.size());
348 // The shenaniganery below with &foo.front() requires input_fds_ to have
350 // This is why the header warns not to make input_fds_ a deque<>.
351 msg->file_descriptor_set()->SetDescriptors(&input_fds_.front(),
353 input_fds_.clear();
359 return input_fds_.empty();
ipc_channel_posix.h 112 // input_fds_ queue. Returns false if there was a message receiving error.
119 // appends the descriptors to the input_fds_ member and returns true
125 // Closes all handles in the input_fds_ list and clears the list. This is
193 // them to input_fds_, since this buffer will be re-used anytime we call
203 std::vector<int> input_fds_; member in class:IPC::ChannelPosix
ipc_channel_posix.cc 863 // This will read from the input_fds_ (READWRITE mode only) and read more
872 if (header_fds > input_fds_.size()) {
878 if (header_fds > input_fds_.size())
896 // The shenaniganery below with &foo.front() requires input_fds_ to have
898 // This is why the header warns not to make input_fds_ a deque<>.
899 msg->file_descriptor_set()->SetDescriptors(&input_fds_.front(),
901 input_fds_.erase(input_fds_.begin(), input_fds_.begin() + header_fds);
909 return input_fds_.empty()
    [all...]
ipc_channel_reader.h 75 // This will read from the input_fds_ and read more handles from the FD
ipc_channel_nacl.h 108 std::vector<int> input_fds_; member in class:IPC::ChannelNacl

Completed in 208 milliseconds