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

  /external/openssl/apps/
s_apps.h 136 typedef int fd_mask; /* int here! VMS prototypes int, not long */ typedef
137 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask (power of 2!)*/
140 typedef fd_mask fd_set;
  /external/bluetooth/glib/glib/
gpoll.c 365 typedef long fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xpoll.h 95 typedef long fd_mask; typedef
110 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
142 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS)))
145 #define FD_CLR(n, p) (__XFDS_BITS((p), ((n)/NFDBITS)) &= ~((fd_mask)1 << ((n) % NFDBITS)))
148 #define FD_ISSET(n, p) ((__XFDS_BITS((p), ((n)/NFDBITS))) & ((fd_mask)1 << ((n) % NFDBITS)))
Xos.h 232 typedef unsigned long fd_mask; typedef
257 typedef unsigned long fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
select.h 85 typedef __fd_mask fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 95 typedef long fd_mask; typedef
110 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
142 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS)))
145 #define FD_CLR(n, p) (__XFDS_BITS((p), ((n)/NFDBITS)) &= ~((fd_mask)1 << ((n) % NFDBITS)))
148 #define FD_ISSET(n, p) ((__XFDS_BITS((p), ((n)/NFDBITS))) & ((fd_mask)1 << ((n) % NFDBITS)))
Xos.h 232 typedef unsigned long fd_mask; typedef
257 typedef unsigned long fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
select.h 85 typedef __fd_mask fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 95 typedef long fd_mask; typedef
110 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
119 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
142 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS)))
145 #define FD_CLR(n, p) (__XFDS_BITS((p), ((n)/NFDBITS)) &= ~((fd_mask)1 << ((n) % NFDBITS)))
148 #define FD_ISSET(n, p) ((__XFDS_BITS((p), ((n)/NFDBITS))) & ((fd_mask)1 << ((n) % NFDBITS)))
Xos.h 232 typedef unsigned long fd_mask; typedef
257 typedef unsigned long fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
select.h 85 typedef __fd_mask fd_mask; typedef
  /external/chromium/third_party/libevent/
select.c 67 typedef unsigned long fd_mask; typedef
111 select_resize(sop, howmany(32 + 1, NFDBITS)*sizeof(fd_mask));
218 n_events = (fdsz/sizeof(fd_mask)) * NFDBITS;
219 n_events_old = (sop->event_fdsz/sizeof(fd_mask)) * NFDBITS;
281 if (fdsz < sizeof(fd_mask))
282 fdsz = sizeof(fd_mask);
285 (howmany(ev->ev_fd + 1, NFDBITS) * sizeof(fd_mask)))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xos.h 241 typedef unsigned long fd_mask; typedef
266 typedef unsigned long fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xos.h 241 typedef unsigned long fd_mask; typedef
266 typedef unsigned long fd_mask; typedef
  /external/openssh/
defines.h 364 typedef unsigned long int fd_mask; typedef
  /external/valgrind/main/perf/
test_input_for_tinycc.c 397 typedef __fd_mask fd_mask; typedef
    [all...]

Completed in 378 milliseconds