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

  /external/syslinux/gpxe/src/include/gpxe/
posix_io.h 22 typedef uint32_t fd_set; typedef
27 extern int select ( fd_set *readfds, int wait );
37 FD_ZERO ( fd_set *set ) {
48 FD_SET ( int fd, fd_set *set ) {
59 FD_CLR ( int fd, fd_set *set ) {
71 FD_ISSET ( int fd, fd_set *set ) {
  /bionic/libc/include/sys/
select.h 47 } fd_set; typedef in typeref:struct:__anon312
57 for (__i = 0; __i < sizeof(fd_set)/sizeof(fd_mask); ++__i) { \
62 void __FD_CLR_chk(int, fd_set*, size_t) __INTRODUCED_IN(21);
63 void __FD_SET_chk(int, fd_set*, size_t) __INTRODUCED_IN(21);
64 int __FD_ISSET_chk(int, const fd_set*, size_t) __INTRODUCED_IN(21);
66 #define __FD_CLR(fd, set) (__FDS_BITS(fd_set*,set)[__FDELT(fd)] &= ~__FDMASK(fd))
67 #define __FD_SET(fd, set) (__FDS_BITS(fd_set*,set)[__FDELT(fd)] |= __FDMASK(fd))
68 #define __FD_ISSET(fd, set) ((__FDS_BITS(const fd_set*,set)[__FDELT(fd)] & __FDMASK(fd)) != 0)
73 #define FD_SET(fd, set) __FD_SET_chk(fd, set, __bos(set))
77 #define FD_SET(fd, set) __FD_SET(fd, set
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
fd_set.h 1 /* $NetBSD: fd_set.h,v 1.2 2005/12/11 12:25:20 christos Exp $ */
62 typedef struct fd_set { struct
64 } fd_set; typedef in typeref:struct:fd_set
66 #define FD_SET(n, p) \
76 fd_set *__fds = (p); \
98 fd_set *__f = (f), *__t = (t); \
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
posix_fd_set_adapter.hpp 28 // Adapts the FD_SET type to meet the Descriptor_Set concept's requirements.
51 FD_SET(descriptor, &fd_set_);
76 operator fd_set*()
99 mutable fd_set fd_set_;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_fd_types.h 17 /* fd_set may have been defined by the newlib <sys/types.h>
21 typedef struct fd_set struct
25 } fd_set; typedef in typeref:struct:fd_set
31 int WINAPI __WSAFDIsSet(SOCKET,fd_set *);
41 for(__i = 0; __i < ((fd_set *)(set))->fd_count; __i++) { \
42 if (((fd_set *)(set))->fd_array[__i] == fd) { \
43 while (__i < ((fd_set *)(set))->fd_count - 1) { \
44 ((fd_set *)(set))->fd_array[__i] = \
45 ((fd_set *)(set))->fd_array[__i + 1]; \
48 ((fd_set *)(set))->fd_count--;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xpoll.h 89 typedef struct fd_set { struct
91 } fd_set; typedef in typeref:struct:fd_set
94 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
104 #ifndef FD_SET
105 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS)))
165 #define Select(n,r,w,e,t) select(0,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/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. */
64 /* fd_set for select and pselect. */
76 } fd_set; typedef in typeref:struct:__anon62343
78 /* Maximum number of file descriptors in `fd_set'. */
82 /* Sometimes the fd_set member is assumed to have this type. */
85 /* Number of bits per word of `fd_set' (some code assumes this is 32). */
90 /* Access macros for `fd_set'. */
91 #define FD_SET(fd, fdsetp) __FD_SET (fd, fdsetp)
107 extern int select (int __nfds, fd_set *__restrict __readfds
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/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. */
64 /* fd_set for select and pselect. */
76 } fd_set; typedef in typeref:struct:__anon63210
78 /* Maximum number of file descriptors in `fd_set'. */
82 /* Sometimes the fd_set member is assumed to have this type. */
85 /* Number of bits per word of `fd_set' (some code assumes this is 32). */
90 /* Access macros for `fd_set'. */
91 #define FD_SET(fd, fdsetp) __FD_SET (fd, fdsetp)
107 extern int select (int __nfds, fd_set *__restrict __readfds
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
sockets.h 288 /* FD_SET used for lwip_select */
289 #ifndef FD_SET
293 #define FD_SET(n, p) ((p)->fd_bits[(n)/8] |= (1 << ((n) & 7)))
298 typedef struct fd_set { struct
300 } fd_set; typedef in typeref:struct:fd_set
302 #endif /* FD_SET */
338 int lwip_select(int maxfdp1, fd_set *readset, fd_set *writeset, fd_set *exceptset,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
infinite_recursion.py 2402 class fd_set(Structure): class in inherits:Structure
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/data/
infinite_recursion.py 2402 class fd_set(Structure): class in inherits:Structure
    [all...]
  /external/python/cpython3/Lib/lib2to3/tests/data/
infinite_recursion.py 2402 class fd_set(Structure): class in inherits:Structure
    [all...]
  /external/valgrind/perf/
test_input_for_tinycc.c 390 } fd_set; typedef in typeref:struct:__anon43161
401 extern int select (int __nfds, fd_set *__restrict __readfds,
402 fd_set *__restrict __writefds,
403 fd_set *__restrict __exceptfds,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 2402 class fd_set(Structure): class in inherits:Structure
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 2402 class fd_set(Structure): class in inherits:Structure
    [all...]

Completed in 1237 milliseconds