/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/openssh/openbsd-compat/ |
bsd-poll.c | 58 if ((readfds = calloc(nmemb, sizeof(fd_mask))) == NULL || 59 (writefds = calloc(nmemb, sizeof(fd_mask))) == NULL || 60 (exceptfds = calloc(nmemb, sizeof(fd_mask))) == NULL) {
|
/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.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/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
|
/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/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/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/sys/ |
select.h | 85 typedef __fd_mask fd_mask; typedef
|
/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/libppp/src/ |
defs.c | 396 return (fd_set *)malloc(howmany(getdtablesize(), NFDBITS) * sizeof (fd_mask)); 402 memset(s, '\0', howmany(getdtablesize(), NFDBITS) * sizeof (fd_mask));
|
/external/openssh/ |
ssh-keyscan.c | 540 r = xcalloc(read_wait_nfdset, sizeof(fd_mask)); 541 e = xcalloc(read_wait_nfdset, sizeof(fd_mask)); 542 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask)); 543 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask)); 718 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
|
packet.c | 1037 NFDBITS), sizeof(fd_mask)); 1062 NFDBITS) * sizeof(fd_mask)); [all...] |
ssh-pkcs11-helper.c | 300 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask);
|
defines.h | 364 typedef unsigned long int fd_mask; typedef
|
sshconnect.c | 271 sizeof(fd_mask)); 450 fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask); [all...] |
channels.c | [all...] |
sftp-server.c | 1488 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask); [all...] |
ssh-agent.c | 952 sz = howmany(n+1, NFDBITS) * sizeof(fd_mask); [all...] |
sshd.c | 1124 sizeof(fd_mask)); [all...] |
/external/valgrind/main/perf/ |
test_input_for_tinycc.c | 397 typedef __fd_mask fd_mask; typedef [all...] |