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_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 97 // input_fds_ queue. Returns false if there was a message receiving error.
104 // appends the descriptors to the input_fds_ member and returns true
110 // Closes all handles in the input_fds_ list and clears the list. This is
178 // them to input_fds_, since this buffer will be re-used anytime we call
188 std::vector<int> input_fds_; member in class:IPC::Channel::ChannelImpl
ipc_channel_posix.cc 847 // This will read from the input_fds_ (READWRITE mode only) and read more
856 if (header_fds > input_fds_.size()) {
862 if (header_fds > input_fds_.size())
880 // The shenaniganery below with &foo.front() requires input_fds_ to have
882 // This is why the header warns not to make input_fds_ a deque<>.
883 msg->file_descriptor_set()->SetDescriptors(&input_fds_.front(),
885 input_fds_.erase(input_fds_.begin(), input_fds_.begin() + header_fds);
893 return input_fds_.empty()
    [all...]

Completed in 40 milliseconds