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

  /external/chromium_org/ipc/
ipc_channel_posix.cc 816 // This will read from the input_fds_ (READWRITE mode only) and read more
825 if (header_fds > input_fds_.size()) {
831 if (header_fds > input_fds_.size())
849 // The shenaniganery below with &foo.front() requires input_fds_ to have
851 // This is why the header warns not to make input_fds_ a deque<>.
852 msg->file_descriptor_set()->SetDescriptors(&input_fds_.front(),
854 input_fds_.erase(input_fds_.begin(), input_fds_.begin() + header_fds);
862 return input_fds_.empty()
    [all...]
ipc_channel_nacl.cc 214 input_fds_.insert(input_fds_.end(),
329 CHECK(header_fds == input_fds_.size());
333 // The shenaniganery below with &foo.front() requires input_fds_ to have
335 // This is why the header warns not to make input_fds_ a deque<>.
336 msg->file_descriptor_set()->SetDescriptors(&input_fds_.front(),
338 input_fds_.clear();
344 return input_fds_.empty();
ipc_channel_nacl.h 105 std::vector<int> input_fds_; member in class:IPC::Channel::ChannelImpl
ipc_channel_posix.h 94 // input_fds_ queue. Returns false if there was a message receiving error.
101 // appends the descriptors to the input_fds_ member and returns true
107 // Closes all handles in the input_fds_ list and clears the list. This is
175 // them to input_fds_, since this buffer will be re-used anytime we call
185 std::vector<int> input_fds_; member in class:IPC::Channel::ChannelImpl

Completed in 1195 milliseconds