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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/Include/sys/
select.h 38 #include <sys/fd_set.h>
45 int pselect(int, fd_set * __restrict, fd_set * __restrict,
46 fd_set * __restrict, const struct timespec * __restrict,
48 int select(int, fd_set * __restrict, fd_set * __restrict,
49 fd_set * __restrict, struct timeval * __restrict);
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); \
  /bionic/tests/headers/posix/
sys_select_h.c 43 TYPE(fd_set);
53 #if !defined(FD_SET)
54 #error FD_SET
60 FUNCTION(pselect, int (*f)(int, fd_set*, fd_set*, fd_set*, const struct timespec*, const sigset_t*));
61 FUNCTION(select, int (*f)(int, fd_set*, fd_set*, fd_set*, struct timeval*));
sys_time_h.c 45 TYPE(fd_set);
57 #if !defined(FD_SET)
58 #error FD_SET
72 FUNCTION(select, int (*f)(int, fd_set*, fd_set*, fd_set*, struct timeval*));
  /external/u-boot/arch/microblaze/include/asm/
posix_types.h 63 #define __FD_SET(fd, fd_set) \
64 __set_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
66 #define __FD_CLR(fd, fd_set) \
67 __clear_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
69 #define __FD_ISSET(fd, fd_set) \
70 __test_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
72 #define __FD_ZERO(fd_set) \
73 memset (fd_set, 0, sizeof (*(fd_set *)fd_set))
    [all...]
  /bionic/libc/include/sys/
select.h 47 } fd_set; typedef in typeref:struct:__anon286
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...]
  /external/openssh/openbsd-compat/
kludge-fd_set.c 4 * _FORTIFY_SOURCE includes a misguided check for FD_SET(n)/FD_ISSET(b)
6 * explicitly allocate fd_sets. To avoid this, we wrap FD_SET in a
19 void kludge_FD_SET(int n, fd_set *set) {
20 FD_SET(n, set);
22 int kludge_FD_ISSET(int n, fd_set *set) {
  /external/u-boot/arch/arm/include/asm/
posix_types.h 71 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31)))
75 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31)))
79 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0)
83 (memset (fdsetp, 0, sizeof (*(fd_set *)fdsetp)))
  /external/u-boot/arch/nds32/include/asm/
posix_types.h 72 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31)))
76 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31)))
80 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0)
84 (memset(fdsetp, 0, sizeof(*(fd_set *) fdsetp)))
  /external/u-boot/arch/xtensa/include/asm/
posix_types.h 57 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31)))
61 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31)))
65 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0)
69 (memset(fdsetp, 0, sizeof(*(fd_set *)fdsetp)))
  /bionic/libc/bionic/
poll.cpp 38 extern "C" int __pselect6(int, fd_set*, fd_set*, fd_set*, timespec*, void*);
81 int select(int fd_count, fd_set* read_fds, fd_set* write_fds, fd_set* error_fds, timeval* tv) {
98 int pselect(int fd_count, fd_set* read_fds, fd_set* write_fds, fd_set* error_fds,
111 int pselect64(int fd_count, fd_set* read_fds, fd_set* write_fds, fd_set* error_fds
    [all...]
  /external/ppp/pppd/plugins/radius/
util.c 61 select(0,(fd_set *)NULL,(fd_set *)NULL,(fd_set *)NULL, &tv);
  /device/google/marlin/camera/QCamera2/stack/mm-camera-test/inc/
mm_qcamera_socket.h 38 (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] |= (1LU<<((fd) & 31)))
42 (((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] &= ~(1LU<<((fd) & 31)))
46 ((((fd_set *)(fdsetp))->fds_bits[(fd) >> 5] & (1LU<<((fd) & 31))) != 0)
50 (memset (fdsetp, 0, sizeof (*(fd_set *)(fdsetp))))
  /external/u-boot/arch/riscv/include/asm/
posix_types.h 74 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1 << (fd & 31)))
79 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1 << (fd & 31)))
84 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1 << (fd & 31))) != 0)
89 (memset(fdsetp, 0, sizeof(*(fd_set *)fdsetp)))
  /external/virglrenderer/vtest/
util.c 32 fd_set read_fds;
36 FD_SET(fd, &read_fds);
  /external/mdnsresponder/mDNSPosix/
mDNSPosix.h 73 extern void mDNSPosixGetFDSet(mDNS *m, int *nfds, fd_set *readfds, struct timeval *timeout);
74 extern void mDNSPosixProcessFDSet(mDNS *const m, fd_set *readfds);
  /external/drm_hwcomposer/
drmeventlistener.h 56 fd_set fds_;
  /external/libcups/cups/
backchannel.c 34 static void cups_setup(fd_set *set, struct timeval *tval,
53 fd_set input; /* Input set */
105 fd_set output; /* Output set */
177 cups_setup(fd_set *set, /* I - Set for select() */
185 FD_SET(3, set);
  /external/curl/docs/examples/
multi-double.c 71 fd_set fdread;
72 fd_set fdwrite;
73 fd_set fdexcep;
  /external/curl/lib/
select.h 95 int tpf_select_libcurl(int maxfds, fd_set* reads, fd_set* writes,
96 fd_set* excepts, struct timeval* tv);
  /external/curl/tests/libtest/
lib1501.c 62 fd_set fdread;
63 fd_set fdwrite;
64 fd_set fdexcep;
lib507.c 58 fd_set fdread;
59 fd_set fdwrite;
60 fd_set fdexcep;
lib560.c 76 fd_set fdread;
77 fd_set fdwrite;
78 fd_set fdexcep;
lib575.c 80 fd_set fdread;
81 fd_set fdwrite;
82 fd_set fdexcep;
lib597.c 70 fd_set fdread;
71 fd_set fdwrite;
72 fd_set fdexcep;

Completed in 3194 milliseconds

1 2 3 4 5 6 7 8 91011>>