HomeSort by relevance Sort by last modified time
    Searched full:fdset (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/c-ares/
ares_nowarn.h 30 int aresx_FD_ISSET(int fd, fd_set *fdset);
32 void aresx_FD_SET(int fd, fd_set *fdset);
34 void aresx_FD_ZERO(fd_set *fdset);
ares_nowarn.c 140 int aresx_FD_ISSET(int fd, fd_set *fdset)
144 return FD_ISSET(fd, fdset);
148 void aresx_FD_SET(int fd, fd_set *fdset)
152 FD_SET(fd, fdset);
156 void aresx_FD_ZERO(fd_set *fdset)
160 FD_ZERO(fdset);
  /external/libvncserver/examples/
1instance.c 51 fd_set fdset; local
54 FD_ZERO(&fdset);
55 FD_SET(str->fd,&fdset);
59 num_fds=select(str->fd+1,&fdset,NULL,NULL,&tv);
  /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);
warnless.c 432 int curlx_FD_ISSET(int fd, fd_set *fdset)
436 return FD_ISSET(fd, fdset);
440 void curlx_FD_SET(int fd, fd_set *fdset)
444 FD_SET(fd, fdset);
448 void curlx_FD_ZERO(fd_set *fdset)
452 FD_ZERO(fdset);
  /external/curl/tests/libtest/
lib582.c 188 static void updateFdSet(struct Sockets* sockets, fd_set* fdset,
193 FD_SET(sockets->sockets[i], fdset);
214 static void checkFdSet(CURLM *curl, struct Sockets *sockets, fd_set *fdset,
219 if(FD_ISSET(sockets->sockets[i], fdset)) {
  /external/syslinux/gpxe/src/arch/i386/interface/pxe/
pxe_file.c 115 fd_set fdset; local
120 FD_ZERO ( &fdset );
121 FD_SET ( file_select->FileHandle, &fdset );
122 if ( ( ready = select ( &fdset, 0 ) ) < 0 ) {
  /frameworks/base/cmds/incidentd/src/
FdBuffer.h 31 * Reads a file into a buffer, and then writes that data to an FdSet.
  /packages/services/BuiltInPrintService/jni/lib/
printer.c 179 fd_set fdset; local
211 FD_ZERO(&fdset);
212 FD_SET(psock, &fdset);
220 if (select(psock + 1, NULL, &fdset, NULL, &tv) == 1) {
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_amd64.go 32 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
syscall_linux_arm64.go 27 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS_PSELECT6
syscall_linux_ppc64x.go 35 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
syscall_linux_arm.go 90 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT
syscall_linux_mips64x.go 37 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS_PSELECT6
syscall_linux_mipsx.go 31 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT
syscall_openbsd.go 160 //sys Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err error)
syscall_darwin.go 262 //sys Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err error)
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_amd64.go 32 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
syscall_linux_arm64.go 27 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS_PSELECT6
syscall_linux_ppc64x.go 35 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
syscall_linux_arm.go 90 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT
syscall_linux_mips64x.go 37 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS_PSELECT6
syscall_linux_mipsx.go 31 //sys Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT
syscall_openbsd.go 160 //sys Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err error)
  /external/syslinux/gpxe/src/util/
hijack.c 299 fd_set fdset; local
314 FD_ZERO ( &fdset );
315 FD_SET ( fd, &fdset );
316 FD_SET ( hijack.fd, &fdset );
317 if ( select ( ( max_fd + 1 ), &fdset, NULL, NULL, 0 ) < 0 ) {
322 if ( FD_ISSET ( fd, &fdset ) ) {
329 if ( FD_ISSET ( hijack.fd, &fdset ) ) {

Completed in 572 milliseconds

1 2 3 4 5 6 7 8