Searched defs:num_fds (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/components/nacl/loader/
H A Dnacl_ipc_adapter.h67 uint16 num_fds; member in struct:NaClIPCAdapter::NaClMessageHeader
/external/chromium_org/mojo/embedder/
H A Dplatform_channel_utils_posix.cc174 size_t num_fds = payload_length / sizeof(int); local
176 for (size_t i = 0; i < num_fds; i++) {
/external/chromium_org/components/breakpad/browser/
H A Dcrash_handler_host_linux.cc223 const size_t num_fds = len / sizeof(int); local
224 if (num_fds != kNumFDs) {
228 << " num_fds:" << num_fds;
229 for (size_t i = 0; i < num_fds; ++i)
/external/chromium_org/ipc/
H A Dipc_channel_nacl.cc275 const size_t num_fds = msg->file_descriptor_set()->size(); local
276 DCHECK(num_fds <= FileDescriptorSet::kMaxDescriptorsPerMessage);
282 NaClAbiNaClImcMsgHdr msgh = { &iov, 1, fds, num_fds };
343 uint16 header_fds = msg->header()->num_fds;
H A Dipc_message.h237 uint16 num_fds; // the number of descriptors included with this message member in struct:IPC::Message::Header
H A Dipc_channel_posix.cc416 const unsigned num_fds = msg->file_descriptor_set()->size(); local
418 DCHECK(num_fds <= FileDescriptorSet::kMaxDescriptorsPerMessage);
430 msgh.msg_controllen = CMSG_SPACE(sizeof(int) * num_fds);
434 cmsg->cmsg_len = CMSG_LEN(sizeof(int) * num_fds);
440 // num_fds < kMaxDescriptorsPerMessage so no danger of overflow.
441 msg->header()->num_fds = static_cast<uint16>(num_fds);
866 uint16 header_fds = msg->header()->num_fds;
890 << " header()->num_fds:" << header_fds;
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
H A Dsched-messaging.c40 unsigned int num_fds; member in struct:sender_context
97 for (j = 0; j < ctx->num_fds; j++) {
201 unsigned int num_fds,
207 + num_fds * sizeof(int));
212 for (i = 0; i < num_fds; i++) {
223 ctx->num_packets = num_fds * loops;
237 for (i = 0; i < num_fds; i++) {
240 snd_ctx->num_fds = num_fds;
242 pth[num_fds
200 group(pthread_t *pth, unsigned int num_fds, int ready_out, int wakefd) argument
274 unsigned int num_fds = 20; local
[all...]

Completed in 6326 milliseconds