HomeSort by relevance Sort by last modified time
    Searched refs:fdset (Results 1 - 11 of 11) sorted by null

  /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 498 int curlx_FD_ISSET(int fd, fd_set *fdset)
502 return FD_ISSET(fd, fdset);
506 void curlx_FD_SET(int fd, fd_set *fdset)
510 FD_SET(fd, fdset);
514 void curlx_FD_ZERO(fd_set *fdset)
518 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/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 ) {
  /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)) {
  /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) {
  /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 ) ) {
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/
IPACM_Netlink.h 117 fd_set fdset; member in struct:__anon49558
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_Netlink.cpp 184 FD_SET(fd, &info->fdset);
215 FD_SET(sk_fd_set->sk_fds[i].sk_fd, &(sk_fd_set->fdset));
218 if((ret = select(sk_fd_set->max_fd + 1, &(sk_fd_set->fdset), NULL, NULL, NULL)) < 0)
227 if(FD_ISSET(sk_fd_set->sk_fds[i].sk_fd, &(sk_fd_set->fdset)))
238 FD_CLR(sk_fd_set->sk_fds[i].sk_fd, &(sk_fd_set->fdset));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ws2spi.h 107 typedef int (WSPAPI *LPWPUFDISSET)(SOCKET s,fd_set *fdset);
168 int WSPAPI WPUFDIsSet(SOCKET s,fd_set *fdset);
  /external/mksh/src/
funcs.c 1724 fd_set fdset; local
    [all...]

Completed in 422 milliseconds