Searched refs:input_fds_ (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/ipc/
H A Dipc_channel_posix.cc862 // This will read from the input_fds_ (READWRITE mode only) and read more
871 if (header_fds > input_fds_.size()) {
877 if (header_fds > input_fds_.size())
895 // The shenaniganery below with &foo.front() requires input_fds_ to have
897 // This is why the header warns not to make input_fds_ a deque<>.
898 msg->file_descriptor_set()->AddDescriptorsToOwn(&input_fds_.front(),
900 input_fds_.erase(input_fds_.begin(), input_fds_.begin() + header_fds);
908 return input_fds_
[all...]
H A Dipc_channel_nacl.cc229 input_fds_.insert(input_fds_.end(),
348 CHECK(header_fds == input_fds_.size());
352 // The shenaniganery below with &foo.front() requires input_fds_ to have
354 // This is why the header warns not to make input_fds_ a deque<>.
355 msg->file_descriptor_set()->AddDescriptorsToOwn(&input_fds_.front(),
357 input_fds_.clear();
363 return input_fds_.empty();
H A Dipc_channel_nacl.h109 std::vector<int> input_fds_; member in class:IPC::ChannelNacl
H A Dipc_channel_posix.h113 // input_fds_ queue. Returns false if there was a message receiving error.
120 // appends the descriptors to the input_fds_ member and returns true
126 // Closes all handles in the input_fds_ list and clears the list. This is
194 // them to input_fds_, since this buffer will be re-used anytime we call
204 std::vector<int> input_fds_; member in class:IPC::ChannelPosix

Completed in 354 milliseconds