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

1 2 3 4 5 6 7 8 910

  /external/strace/tests/
pselect6.c 44 static fd_set set[3][0x1000000 / sizeof(fd_set)];
75 FD_SET(fds[0], set[0]);
76 FD_SET(fds[1], set[0]);
77 FD_SET(fds[0], set[1]);
78 FD_SET(fds[1], set[1]);
79 FD_SET(1, set[2]);
80 FD_SET(2, set[2]);
94 FD_SET(1, set[1]);
95 FD_SET(2, set[1])
    [all...]
xselect.c 103 fd_set *const rs = (void *) l_rs;
107 fd_set *const ws = (void *) l_ws;
111 fd_set *const es = (void *) l_es;
327 static fd_set set[0x1000000 / sizeof(fd_set)];
328 FD_SET(fds[1], set);
338 const size_t big_size = sizeof(fd_set) + sizeof(long);
339 fd_set *const big_rs = tail_alloc(big_size);
342 fd_set *const big_ws = tail_alloc(big_size);
348 FD_SET(fds[0], big_rs)
    [all...]
  /external/strace/tests-m32/
pselect6.c 44 static fd_set set[3][0x1000000 / sizeof(fd_set)];
75 FD_SET(fds[0], set[0]);
76 FD_SET(fds[1], set[0]);
77 FD_SET(fds[0], set[1]);
78 FD_SET(fds[1], set[1]);
79 FD_SET(1, set[2]);
80 FD_SET(2, set[2]);
94 FD_SET(1, set[1]);
95 FD_SET(2, set[1])
    [all...]
xselect.c 103 fd_set *const rs = (void *) l_rs;
107 fd_set *const ws = (void *) l_ws;
111 fd_set *const es = (void *) l_es;
327 static fd_set set[0x1000000 / sizeof(fd_set)];
328 FD_SET(fds[1], set);
338 const size_t big_size = sizeof(fd_set) + sizeof(long);
339 fd_set *const big_rs = tail_alloc(big_size);
342 fd_set *const big_ws = tail_alloc(big_size);
348 FD_SET(fds[0], big_rs)
    [all...]
  /external/strace/tests-mx32/
pselect6.c 44 static fd_set set[3][0x1000000 / sizeof(fd_set)];
75 FD_SET(fds[0], set[0]);
76 FD_SET(fds[1], set[0]);
77 FD_SET(fds[0], set[1]);
78 FD_SET(fds[1], set[1]);
79 FD_SET(1, set[2]);
80 FD_SET(2, set[2]);
94 FD_SET(1, set[1]);
95 FD_SET(2, set[1])
    [all...]
xselect.c 103 fd_set *const rs = (void *) l_rs;
107 fd_set *const ws = (void *) l_ws;
111 fd_set *const es = (void *) l_es;
327 static fd_set set[0x1000000 / sizeof(fd_set)];
328 FD_SET(fds[1], set);
338 const size_t big_size = sizeof(fd_set) + sizeof(long);
339 fd_set *const big_rs = tail_alloc(big_size);
342 fd_set *const big_ws = tail_alloc(big_size);
348 FD_SET(fds[0], big_rs)
    [all...]
  /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*));
  /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...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/common/
console_helper.c 30 fd_set read_fd;
35 FD_SET(0, &read_fd);
  /bionic/tests/
sys_select_test.cpp 29 fd_set fds;
36 FD_SET(0, &fds);
39 FD_SET(1, &fds);
78 fd_set r;
80 fd_set w;
82 fd_set e;
85 FD_SET(STDIN_FILENO, &r);
86 FD_SET(STDOUT_FILENO, &w);
87 FD_SET(STDERR_FILENO, &w);
119 FD_SET(fd, &r)
    [all...]
  /external/curl/docs/examples/
sendrecv.c 35 fd_set infd, outfd, errfd;
45 FD_SET(sockfd, &errfd); /* always check for error */
48 FD_SET(sockfd, &infd);
51 FD_SET(sockfd, &outfd);
  /external/ltp/testcases/kernel/syscalls/pselect/
pselect01.c 26 fd_set readfds;
30 FD_SET(0, &readfds);
pselect03.c 35 fd_set readfds;
39 FD_SET(fd, &readfds);
  /external/ltp/testcases/kernel/syscalls/select/
select02.c 58 fd_set saved_Readfds, saved_Writefds;
59 fd_set Readfds, Writefds;
112 FD_SET(Fd[0], &saved_Readfds);
113 FD_SET(Fd[1], &saved_Writefds);
select03.c 62 fd_set saved_Readfds, saved_Writefds;
63 fd_set Readfds, Writefds;
126 FD_SET(Fd, &saved_Readfds);
127 FD_SET(Fd, &saved_Writefds);
select04.c 35 fd_set sfds;
39 FD_SET(fds[0], &sfds);
  /external/dhcpcd-6.8.2/compat/
pselect.c 42 fd_set read_fds;
50 FD_SET(fds[n].fd, &read_fds);
  /external/libvncserver/libvncclient/
listen.c 57 fd_set fds;
98 FD_SET(listenSocket, &fds);
100 FD_SET(listen6Socket, &fds);
152 fd_set fds;
193 FD_SET(client->listenSock, &fds);
195 FD_SET(client->listen6Sock, &fds);
  /external/ltp/testcases/kernel/syscalls/personality/
personality02.c 35 fd_set rfds;
38 FD_SET(1, &rfds);
  /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 ) {
  /frameworks/wilhelm/tests/sandbox/
getch.c 38 fd_set fds;
40 FD_SET(0, &fds);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
time.h 29 #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp)
  /system/media/audio_utils/tests/
getch.c 38 fd_set fds;
40 FD_SET(0, &fds);
  /external/curl/lib/
warnless.h 88 int curlx_FD_ISSET(int fd, fd_set *fdset);
90 void curlx_FD_SET(int fd, fd_set *fdset);
92 void curlx_FD_ZERO(fd_set *fdset);
101 # undef FD_SET
102 # define FD_SET(a,b) curlx_FD_SET((a),(b))

Completed in 350 milliseconds

1 2 3 4 5 6 7 8 910