HomeSort by relevance Sort by last modified time
    Searched refs:fd_set (Results 26 - 50 of 327) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/qemu/proxy/
proxy_common.h 79 fd_set* read_fds,
80 fd_set* write_fds,
81 fd_set* err_fds);
84 extern void proxy_manager_poll( fd_set* read_fds,
85 fd_set* write_fds,
86 fd_set* err_fds );
  /external/qemu/slirp/
libslirp.h 11 fd_set *readfds, fd_set *writefds, fd_set *xfds);
13 void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
select.h 0 /* `fd_set' type and related macros, and `select'/`pselect' declarations.
54 /* The fd_set member is required to be an array of longs. */
66 /* fd_set for select and pselect. */
78 } fd_set; typedef in typeref:struct:__anon23583
80 /* Maximum number of file descriptors in `fd_set'. */
84 /* Sometimes the fd_set member is assumed to have this type. */
87 /* Number of bits per word of `fd_set' (some code assumes this is 32). */
92 /* Access macros for `fd_set'. */
93 #define FD_SET(fd, fdsetp) __FD_SET (fd, fdsetp)
109 extern int select (int __nfds, fd_set *__restrict __readfds
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
select.h 0 /* `fd_set' type and related macros, and `select'/`pselect' declarations.
54 /* The fd_set member is required to be an array of longs. */
66 /* fd_set for select and pselect. */
78 } fd_set; typedef in typeref:struct:__anon25246
80 /* Maximum number of file descriptors in `fd_set'. */
84 /* Sometimes the fd_set member is assumed to have this type. */
87 /* Number of bits per word of `fd_set' (some code assumes this is 32). */
92 /* Access macros for `fd_set'. */
93 #define FD_SET(fd, fdsetp) __FD_SET (fd, fdsetp)
109 extern int select (int __nfds, fd_set *__restrict __readfds
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
select.h 0 /* `fd_set' type and related macros, and `select'/`pselect' declarations.
54 /* The fd_set member is required to be an array of longs. */
66 /* fd_set for select and pselect. */
78 } fd_set; typedef in typeref:struct:__anon26685
80 /* Maximum number of file descriptors in `fd_set'. */
84 /* Sometimes the fd_set member is assumed to have this type. */
87 /* Number of bits per word of `fd_set' (some code assumes this is 32). */
92 /* Access macros for `fd_set'. */
93 #define FD_SET(fd, fdsetp) __FD_SET (fd, fdsetp)
109 extern int select (int __nfds, fd_set *__restrict __readfds
    [all...]
  /bionic/libc/kernel/arch-arm/asm/
posix_types.h 67 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
70 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
72 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
75 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /development/ndk/platforms/android-3/arch-arm/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /external/kernel-headers/original/asm-arm/
posix_types.h 65 (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
69 (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
73 ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
77 (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/asm/
posix_types.h 57 #define __FD_SET(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1<<((fd) & 31)))
60 #define __FD_CLR(fd, fdsetp) (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1<<((fd) & 31)))
63 #define __FD_ISSET(fd, fdsetp) ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1<<((fd) & 31))) != 0)
66 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /bionic/libc/unistd/
pselect.c 33 pselect(int n, fd_set* readfds, fd_set* writefds, fd_set* errfds,
  /external/ppp/pppd/plugins/radius/
util.c 61 select(0,(fd_set *)NULL,(fd_set *)NULL,(fd_set *)NULL, &tv);
  /external/qemu/slirp-android/
libslirp.h 29 fd_set *readfds, fd_set *writefds, fd_set *xfds);
31 void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds);
  /external/dropbear/
listener.h 50 void handle_listeners(fd_set * readfds);
51 void set_listener_fds(fd_set * readfds);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
select.h 29 fd_set *__arr = (s); \
30 for (__i = 0; __i < sizeof (fd_set) / sizeof (__fd_mask); ++__i) \

Completed in 998 milliseconds

12 3 4 5 6 7 8 91011>>