HomeSort by relevance Sort by last modified time
    Searched refs:fd_mask (Results 1 - 25 of 33) sorted by null

1 2

  /external/openssh/openbsd-compat/
bsd-poll.c 59 if ((readfds = calloc(nmemb, sizeof(fd_mask))) == NULL ||
60 (writefds = calloc(nmemb, sizeof(fd_mask))) == NULL ||
61 (exceptfds = calloc(nmemb, sizeof(fd_mask))) == NULL) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
select.c 103 fd_mask **ibits,
104 fd_mask **obits,
116 fd_mask bits;
157 fd_mask *ibits[3], *obits[3], *selbits, *sbp;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xpoll.h 66 typedef long fd_mask; typedef
81 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
90 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
105 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS)))
108 #define FD_CLR(n, p) (__XFDS_BITS((p), ((n)/NFDBITS)) &= ~((fd_mask)1 << ((n) % NFDBITS)))
111 #define FD_ISSET(n, p) ((__XFDS_BITS((p), ((n)/NFDBITS))) & ((fd_mask)1 << ((n) % NFDBITS)))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xpoll.h 66 typedef long fd_mask; typedef
81 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
90 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
105 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS)))
108 #define FD_CLR(n, p) (__XFDS_BITS((p), ((n)/NFDBITS)) &= ~((fd_mask)1 << ((n) % NFDBITS)))
111 #define FD_ISSET(n, p) ((__XFDS_BITS((p), ((n)/NFDBITS))) & ((fd_mask)1 << ((n) % NFDBITS)))
  /external/libevent/
select.c 55 typedef unsigned long fd_mask; typedef
59 #define NFDBITS (sizeof(fd_mask)*8)
67 (DIV_ROUNDUP(n, NFDBITS) * sizeof(fd_mask))
255 if (fdsz < (int)sizeof(fd_mask))
256 fdsz = (int)sizeof(fd_mask);
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
fd_set.h 88 #define fd_mask __fd_mask macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
select.h 85 typedef __fd_mask fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
select.h 83 typedef __fd_mask fd_mask; typedef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
select.h 83 typedef __fd_mask fd_mask; typedef
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
pyport.h 812 typedef long fd_mask;
814 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
820 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyport.h 835 typedef long fd_mask;
837 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
843 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
pyport.h 851 typedef long fd_mask;
853 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
859 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyport.h 812 typedef long fd_mask;
814 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
820 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
  /external/python/cpython2/Include/
pyport.h 844 typedef long fd_mask;
846 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
852 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyport.h     [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
pyport.h     [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyport.h     [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyport.h     [all...]
  /external/openssh/
ssh-keyscan.c 625 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
626 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
627 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
628 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
811 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
ssh-pkcs11-helper.c 304 set_size = howmany(max + 1, NFDBITS) * sizeof(fd_mask);
defines.h 391 typedef unsigned long int fd_mask; typedef
sshconnect.c 360 sizeof(fd_mask));
559 fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask);
    [all...]
sftp-server.c     [all...]
packet.c     [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_send.c 729 sizeof(fd_mask);

Completed in 908 milliseconds

1 2