HomeSort by relevance Sort by last modified time
    Searched refs:fd_count (Results 1 - 8 of 8) 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;
  /system/core/init/
init.c 853 int fd_count = 0; local
958 ufds[fd_count].fd = get_property_set_fd();
959 ufds[fd_count].events = POLLIN;
960 ufds[fd_count].revents = 0;
961 fd_count++;
965 ufds[fd_count].fd = get_signal_fd();
966 ufds[fd_count].events = POLLIN;
967 ufds[fd_count].revents = 0;
968 fd_count++;
972 ufds[fd_count].fd = get_keychord_fd()
    [all...]
  /external/quake/quake/src/WinQuake/
mpdosock.h 48 u_int fd_count; /* how many are SET? */
65 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count ; __i++) { \
67 while (__i < ((fd_set FAR *)(set))->fd_count-1) { \
72 ((fd_set FAR *)(set))->fd_count--; \
79 if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) \
80 ((fd_set FAR *)(set))->fd_array[((fd_set FAR *)(set))->fd_count++]=(fd);\
83 #define FD_ZERO(set) (((fd_set FAR *)(set))->fd_count=0)
  /frameworks/native/libs/binder/
Parcel.cpp 790 size_t fd_count = val.getFdCount(); local
795 err = this->writeInt32(fd_count);
804 if (fd_count) {
805 fds = new int[fd_count];
808 err = val.flatten(buf, len, fds, fd_count);
809 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
813 if (fd_count) {
1136 const size_t fd_count = this->readInt32(); local
1144 if (fd_count) {
1145 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 545 static Int fd_count = 0; variable
568 fd_count--;
606 fd_count++;
721 VG_(message)(Vg_UserMsg, "FILE DESCRIPTORS: %d open at exit.\n", fd_count);
    [all...]

Completed in 107 milliseconds