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

  /external/chromium_org/ipc/
ipc_channel_nacl.cc 328 uint16 header_fds = msg->header()->num_fds; local
329 CHECK(header_fds == input_fds_.size());
330 if (header_fds == 0)
337 header_fds);
ipc_channel_posix.cc 850 uint16 header_fds = msg->header()->num_fds; local
851 if (!header_fds)
856 if (header_fds > input_fds_.size()) {
862 if (header_fds > input_fds_.size())
867 if (header_fds > FileDescriptorSet::kMaxDescriptorsPerMessage)
874 << " header()->num_fds:" << header_fds;
884 header_fds);
885 input_fds_.erase(input_fds_.begin(), input_fds_.begin() + header_fds);
    [all...]

Completed in 52 milliseconds