HomeSort by relevance Sort by last modified time
    Searched defs:fd_count (Results 1 - 8 of 8) sorted by null

  /external/libchrome/sandbox/linux/services/
proc_util_unittest.cc 19 int fd_count = ProcUtil::CountOpenFds(proc_fd.get()); local
22 EXPECT_EQ(fd_count + 1, ProcUtil::CountOpenFds(proc_fd.get()));
24 EXPECT_EQ(fd_count, ProcUtil::CountOpenFds(proc_fd.get()));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_fd_types.h 23 u_int fd_count; member in struct:fd_set
41 for(__i = 0; __i < ((fd_set *)(set))->fd_count; __i++) { \
43 while (__i < ((fd_set *)(set))->fd_count - 1) { \
48 ((fd_set *)(set))->fd_count--; \
56 #define FD_ZERO(set) (((fd_set *)(set))->fd_count = 0)
76 for(__i = 0; __i < ((fd_set *)(set))->fd_count; __i++) { \
81 if (__i == ((fd_set *)(set))->fd_count) { \
82 if (((fd_set *)(set))->fd_count < FD_SETSIZE) { \
84 ((fd_set *)(set))->fd_count++; \
92 if (((fd_set *)(set))->fd_count < FD_SETSIZE)
    [all...]
  /external/libevent/
win32select.c 56 u_int fd_count; member in struct:win_fd_set
104 EVUTIL_ASSERT(new_num_fds >= op->readset_in->fd_count &&
105 new_num_fds >= op->writeset_in->fd_count);
129 if (set->fd_count == op->num_fds_in_fd_sets) {
135 set->fd_array[set->fd_count] = s;
137 ent->read_pos_plus1 = set->fd_count+1;
139 ent->write_pos_plus1 = set->fd_count+1;
140 return (set->fd_count++);
158 if (--set->fd_count != (unsigned)i) {
161 s2 = set->fd_array[i] = set->fd_array[set->fd_count];
279 int fd_count; local
    [all...]
  /bionic/tests/
fortify_test.cpp 1022 nfds_t fd_count = atoi("2"); // suppress compiler optimizations local
1025 ASSERT_FORTIFY(poll(buf, fd_count, 0));
1029 nfds_t fd_count = atoi("2"); // suppress compiler optimizations local
1034 ASSERT_FORTIFY(ppoll(buf, fd_count, &timeout, NULL));
  /device/google/contexthub/util/nanotool/
androidcontexthub.cpp 222 int fd_count = ResetPollFds(pollfds, kDeviceFileCount); local
225 int ret = poll(pollfds, fd_count, timeout);
  /external/webrtc/webrtc/p2p/base/
turnport_unittest.cc 84 int fd_count = 0; local
89 ++fd_count;
92 return fd_count;
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-generic.c 548 static Int fd_count = 0; variable
570 fd_count--;
609 fd_count++;
828 VG_(message)(Vg_UserMsg, "FILE DESCRIPTORS: %d open %s.\n", fd_count, when);
    [all...]
  /frameworks/native/libs/binder/
Parcel.cpp 1272 const size_t fd_count = val.getFdCount(); local
2055 const size_t fd_count = this->readInt32(); local
    [all...]

Completed in 1077 milliseconds