HomeSort by relevance Sort by last modified time
    Searched refs:FD_SET (Results 101 - 125 of 277) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libnl/src/
nl-monitor.c 98 fd_set rfds;
104 FD_SET(fd, &rfds);
  /external/selinux/policycoreutils/run_init/
open_init_pty.c 207 fd_set readfds;
208 fd_set writefds;
300 FD_SET(pty_master, &readfds);
305 FD_SET(pty_master, &writefds);
310 FD_SET(STDIN_FILENO, &readfds);
315 FD_SET(STDOUT_FILENO, &writefds);
  /hardware/bsp/intel/peripheral/libupm/src/hm11/
hm11.cxx 86 fd_set readfds;
90 FD_SET(m_ttyFd, &readfds);
  /hardware/bsp/intel/peripheral/libupm/src/ublox6/
ublox6.cxx 85 fd_set readfds;
89 FD_SET(m_ttyFd, &readfds);
  /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:__anon40415
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:__anon41282
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...]
  /art/runtime/jdwp/
jdwp_adb.cc 307 fd_set readfds;
316 FD_SET(fd, &readfds);
323 FD_SET(fd, &readfds);
330 FD_SET(fd, &readfds);
jdwp_socket.cc 385 fd_set readfds;
394 FD_SET(fd, &readfds);
401 FD_SET(fd, &readfds);
408 FD_SET(fd, &readfds);
  /external/dnsmasq/src/
dnsmasq.c 61 static int set_dns_listeners(time_t now, fd_set *set, int *maxfdp);
62 static void check_dns_listeners(fd_set *set, time_t now);
68 static int set_android_listeners(fd_set *set, int *maxfdp);
69 static int check_android_listeners(fd_set *set);
580 fd_set rset, wset, eset;
614 FD_SET(daemon->dhcpfd, &rset);
620 FD_SET(daemon->netlinkfd, &rset);
624 FD_SET(piperead, &rset);
633 FD_SET(daemon->helperfd, &wset);
986 static int set_android_listeners(fd_set *set, int *maxfdp)
    [all...]
dbus.c 339 fd_set *rset, fd_set *wset, fd_set *eset)
352 FD_SET(fd, rset);
355 FD_SET(fd, wset);
357 FD_SET(fd, eset);
361 void check_dbus_listeners(fd_set *rset, fd_set *wset, fd_set *eset)
  /external/libvncserver/libvncserver/
sockets.c 154 FD_SET(rfbScreen->inetdSock, &(rfbScreen->allFds));
177 FD_SET(rfbScreen->listenSock, &(rfbScreen->allFds));
195 FD_SET(rfbScreen->listen6Sock, &(rfbScreen->allFds));
210 FD_SET(rfbScreen->listenSock, &(rfbScreen->allFds));
222 FD_SET(rfbScreen->listen6Sock, &(rfbScreen->allFds));
238 FD_SET(rfbScreen->udpSock, &(rfbScreen->allFds));
286 fd_set fds;
301 memcpy((char *)&fds, (char *)&(rfbScreen->allFds), sizeof(fd_set));
415 fd_set listen_fds;
423 FD_SET(rfbScreen->listenSock, &listen_fds)
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
OMX_JpegDec_Thread.c 82 fd_set rfds;
110 FD_SET (pComponentPrivate->nCmdPipe[0], &rfds);
112 FD_SET (pComponentPrivate->nFree_outBuf_Q[0], &rfds);
113 FD_SET (pComponentPrivate->nFilled_inpBuf_Q[0], &rfds);
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
OMX_VideoEnc_Thread.c 115 fd_set rfds;
158 FD_SET (pComponentPrivate->nCmdPipe[0], &rfds);
159 FD_SET (pComponentPrivate->nFree_oPipe[0], &rfds);
160 FD_SET (pComponentPrivate->nFilled_iPipe[0], &rfds);
  /external/libmicrohttpd/src/microspdy/
daemon.c 433 fd_set *read_fd_set,
434 fd_set *write_fd_set,
435 fd_set *except_fd_set,
446 FD_SET (fd, read_fd_set);
454 FD_SET(fd, read_fd_set);
464 FD_SET(fd, write_fd_set);
479 fd_set rs;
480 fd_set ws;
481 fd_set es;
  /system/core/libsysutils/src/
SocketListener.cpp 158 fd_set read_fds;
166 FD_SET(mSock, &read_fds);
169 FD_SET(mCtrlPipe[0], &read_fds);
177 FD_SET(fd, &read_fds);
  /cts/suite/audio_quality/lib/src/
ClientSocket.cpp 100 fd_set rfds;
105 FD_SET(mSocket, &rfds);
  /external/c-ares/
ares_nowarn.c 140 int aresx_FD_ISSET(int fd, fd_set *fdset)
148 void aresx_FD_SET(int fd, fd_set *fdset)
152 FD_SET(fd, fdset);
156 void aresx_FD_ZERO(fd_set *fdset)
  /external/libdaemon/examples/
testd.c 104 fd_set fds;
140 FD_SET(fd, &fds);
143 fd_set fds2 = fds;
  /external/libdrm/tests/kms/
kms-steal-crtc.c 120 fd_set fds;
127 FD_SET(STDIN_FILENO, &fds);
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_i2c.c 181 fd_set rfds;
191 FD_SET(gI2cPortContext.nHandle, &rfds);
  /external/libvncserver/examples/
1instance.c 51 fd_set fdset;
55 FD_SET(str->fd,&fdset);
  /system/core/libcutils/
socket_network_client_unix.c 83 fd_set r_set;
85 FD_SET(s, &r_set);
86 fd_set w_set = r_set;
  /bionic/libc/upstream-netbsd/lib/libc/isc/
eventlib_p.h 201 #undef FD_SET
202 #define FD_SET(fd, maskp) \
227 fd_set rdLast, rdNext;
228 fd_set wrLast, wrNext;
229 fd_set exLast, exNext;
230 fd_set nonblockBefore;
  /bionic/tests/
sys_socket_test.cpp 82 fd_set read_set;
84 FD_SET(fd, &read_set);
210 fd_set read_set;
212 FD_SET(fd_acc, &read_set);
  /external/boringssl/src/tool/
transport_common.cc 229 fd_set read_fds;
238 FD_SET(0, &read_fds);
240 FD_SET(sock, &read_fds);

Completed in 1735 milliseconds

1 2 3 45 6 7 8 91011>>