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

1 23 4 5 6 7 8 910

  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
time.h 38 #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
time.h 38 #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp)
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
time.h 38 #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp)
  /external/chromium_org/chromeos/process_proxy/
process_output_watcher.cc 20 void InitReadFdSet(int out_fd, int stop_fd, fd_set* set) {
23 FD_SET(out_fd, set);
24 FD_SET(stop_fd, set);
64 fd_set rfds;
  /external/chromium_org/third_party/openssl/openssl/apps/
s_apps.h 124 #if defined(OPENSSL_SYS_VMS) && !defined(FD_SET)
125 /* VAX C does not defined fd_set and friends, but it's actually quite simple */
140 typedef fd_mask fd_set; typedef
141 #define FD_SET(n, p) (*(p) |= (1 << ((n) % NFDBITS)))
  /external/openssl/apps/
s_apps.h 124 #if defined(OPENSSL_SYS_VMS) && !defined(FD_SET)
125 /* VAX C does not defined fd_set and friends, but it's actually quite simple */
140 typedef fd_mask fd_set; typedef
141 #define FD_SET(n, p) (*(p) |= (1 << ((n) % NFDBITS)))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xpoll.h 118 typedef struct fd_set { struct
120 } fd_set; typedef in typeref:struct:fd_set
124 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
129 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
141 #ifndef FD_SET
142 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 118 typedef struct fd_set { struct
120 } fd_set; typedef in typeref:struct:fd_set
124 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
129 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
141 #ifndef FD_SET
142 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 118 typedef struct fd_set { struct
120 } fd_set; typedef in typeref:struct:fd_set
124 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
129 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
141 #ifndef FD_SET
142 #define FD_SET(n, p) (__XFDS_BITS(p, ((n)/NFDBITS)) |= ((fd_mask)1 << ((n) % NFDBITS))
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
OMX_VideoDec_Thread.c 115 fd_set rfds;
158 FD_SET(pComponentPrivate->cmdPipe[VIDDEC_PIPE_READ], &rfds);
159 FD_SET(pComponentPrivate->filled_outBuf_Q[VIDDEC_PIPE_READ], &rfds);
160 FD_SET(pComponentPrivate->free_inpBuf_Q[VIDDEC_PIPE_READ], &rfds);
161 FD_SET(pComponentPrivate->free_outBuf_Q[VIDDEC_PIPE_READ], &rfds);
162 FD_SET(pComponentPrivate->filled_inpBuf_Q[VIDDEC_PIPE_READ], &rfds);
371 fd_set rfds;
396 FD_SET(pComponentPrivate->filled_outBuf_Q[VIDDEC_PIPE_READ], &rfds);
397 FD_SET(pComponentPrivate->free_inpBuf_Q[VIDDEC_PIPE_READ], &rfds);
398 FD_SET(pComponentPrivate->free_outBuf_Q[VIDDEC_PIPE_READ], &rfds)
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEnc_Thread.c 98 fd_set rfds;
130 FD_SET (pComponentPrivate->nCmdPipe[0], &rfds);
132 FD_SET (pComponentPrivate->free_outBuf_Q[0], &rfds);
133 FD_SET (pComponentPrivate->filled_inpBuf_Q[0], &rfds);
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP_CompThread.c 102 fd_set rfds;
136 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
139 FD_SET (pComponentPrivate->nFree_oPipe[0], &rfds);
140 FD_SET (pComponentPrivate->nFilled_iPipe[0], &rfds);
  /external/ipsec-tools/src/racoon/
session.c 110 static fd_set mask0;
111 static fd_set maskdying;
119 fd_set rfds;
195 error = select(nfds, &rfds, (fd_set *)0, (fd_set *)0, timeout);
275 plog(LLV_ERROR, LOCATION, NULL, "fd_set overrun\n");
278 FD_SET(lcconf->sock_admin, &mask0);
282 FD_SET(lcconf->sock_admin, &maskdying);
288 plog(LLV_ERROR, LOCATION, NULL, "fd_set overrun\n");
291 FD_SET(lcconf->sock_pfkey, &mask0)
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.cpp 113 fd_set readfds;
126 FD_SET(socketDescriptor, &readfds);
183 fd_set readfds;
195 FD_SET(socketDescriptor, &readfds);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/
Server.cpp 89 fd_set fdReadSockets;
95 FD_SET(serverSock, &fdReadSockets);
104 FD_SET(peerSocket, &fdReadSockets);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
OMX_G711Dec_ComponentThread.c 68 fd_set rfds;
86 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
87 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/src/
OMX_G711Enc_ComponentThread.c 92 fd_set rfds;
106 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
107 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
OMX_G726Dec_CompThread.c 96 fd_set rfds;
113 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
114 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
OMX_G726Enc_ComponentThread.c 89 fd_set rfds;
103 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
104 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
  /external/dropbear/
common-session.c 122 fd_set readfd, writefd;
135 FD_SET(ses.sock, &readfd);
137 FD_SET(ses.sock, &writefd);
143 FD_SET(ses.signal_pipe[0], &readfd);
288 fd_set fds;
304 FD_SET(fd, &fds);
  /external/linux-tools-perf/util/
pager.c 18 fd_set in;
21 FD_SET(0, &in);
  /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:__anon40718
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:__anon42384
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:__anon43896
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...]
  /dalvik/vm/
StdioConverter.cpp 154 fd_set readfds;
158 FD_SET(gDvm.stdoutPipe[0], &readfds);
159 FD_SET(gDvm.stderrPipe[0], &readfds);

Completed in 200 milliseconds

1 23 4 5 6 7 8 910