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

  /external/chromium/third_party/libevent/
poll.c 59 int fd_count; /* Size of idxplus1_by_fd */ member in struct:pollop
108 for (i = 0; i < pop->fd_count; ++i) {
258 if (ev->ev_fd >= pop->fd_count) {
261 if (pop->fd_count < 32)
264 new_count = pop->fd_count * 2;
274 memset(pop->idxplus1_by_fd + pop->fd_count,
275 0, sizeof(int)*(new_count - pop->fd_count));
276 pop->fd_count = new_count;
  /external/chromium_org/third_party/libevent/
poll.c 59 int fd_count; /* Size of idxplus1_by_fd */ member in struct:pollop
108 for (i = 0; i < pop->fd_count; ++i) {
258 if (ev->ev_fd >= pop->fd_count) {
261 if (pop->fd_count < 32)
264 new_count = pop->fd_count * 2;
274 memset(pop->idxplus1_by_fd + pop->fd_count,
275 0, sizeof(int)*(new_count - pop->fd_count));
276 pop->fd_count = new_count;
  /development/ndk/sources/android/libportable/arch-mips/
filefd.c 105 int fd_count = 0; local
137 ++fd_count;
139 fd_type, fd, fd_count);
164 if (fd_count == filefd_mapped_files)
168 if (fd_count != filefd_mapped_files) {
169 ALOGE("%s: fd_count:%d != filefd_mapped_files:%d; [Likely Race; add futex?]", __func__,
170 fd_count, filefd_mapped_files);
  /system/core/init/
init.c 964 int fd_count = 0; local
1090 ufds[fd_count].fd = get_property_set_fd();
1091 ufds[fd_count].events = POLLIN;
1092 ufds[fd_count].revents = 0;
1093 fd_count++;
1097 ufds[fd_count].fd = get_signal_fd();
1098 ufds[fd_count].events = POLLIN;
1099 ufds[fd_count].revents = 0;
1100 fd_count++;
1104 ufds[fd_count].fd = get_keychord_fd()
    [all...]
  /frameworks/native/libs/binder/
Parcel.cpp 817 const size_t fd_count = val.getFdCount(); local
822 err = this->writeInt32(fd_count);
831 if (fd_count) {
832 fds = new int[fd_count];
835 err = val.flatten(buf, len, fds, fd_count);
836 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
840 if (fd_count) {
1191 const size_t fd_count = this->readInt32(); local
1199 if (fd_count) {
1200 fds = new int[fd_count];
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xpoll.h 204 #define XFD_SETCOUNT(p) (((fd_set FAR *)(p))->fd_count)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 204 #define XFD_SETCOUNT(p) (((fd_set FAR *)(p))->fd_count)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 204 #define XFD_SETCOUNT(p) (((fd_set FAR *)(p))->fd_count)
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-generic.c 522 static Int fd_count = 0; variable
545 fd_count--;
583 fd_count++;
698 VG_(message)(Vg_UserMsg, "FILE DESCRIPTORS: %d open at exit.\n", fd_count);
    [all...]

Completed in 1190 milliseconds