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

  /external/bluetooth/glib/glib/
gpoll.c 380 SELECT_MASK rset, wset, xset; local
386 FD_ZERO (&wset);
395 FD_SET (f->fd, &wset);
405 ready = select (maxfd + 1, &rset, &wset, &xset,
415 if (FD_ISSET (f->fd, &wset))
  /external/openssh/
ssh-pkcs11-helper.c 270 fd_set *rset, *wset; local
302 wset = (fd_set *)xmalloc(set_size);
306 memset(wset, 0, set_size);
319 FD_SET(out, wset);
321 if (select(max+1, rset, wset, NULL, NULL) < 0) {
342 if (FD_ISSET(out, wset)) {
sftp-server.c 1401 fd_set *rset, *wset; local
1490 wset = (fd_set *)xmalloc(set_size);
1494 memset(wset, 0, set_size);
1507 FD_SET(out, wset);
1509 if (select(max+1, rset, wset, NULL, NULL) < 0) {
    [all...]
  /external/dnsmasq/src/
dnsmasq.c 574 fd_set rset, wset, eset; local
577 FD_ZERO(&wset);
602 set_dbus_listeners(&maxfd, &rset, &wset, &eset);
627 FD_SET(daemon->helperfd, &wset);
638 set_log_writer(&wset, &maxfd);
640 if (select(maxfd+1, &rset, &wset, &eset, tp) < 0)
643 FD_ZERO(&rset); FD_ZERO(&wset); FD_ZERO(&eset);
648 check_log_writer(&wset);
680 check_dbus_listeners(&rset, &wset, &eset);
698 if (daemon->helperfd != -1 && FD_ISSET(daemon->helperfd, &wset))
1287 fd_set rset, wset; local
    [all...]
dbus.c 339 fd_set *rset, fd_set *wset, fd_set *eset)
355 FD_SET(fd, wset);
361 void check_dbus_listeners(fd_set *rset, fd_set *wset, fd_set *eset)
375 if (FD_ISSET(fd, wset))
dnsmasq.h 876 void check_dbus_listeners(fd_set *rset, fd_set *wset, fd_set *eset);
877 void set_dbus_listeners(int *maxfdp, fd_set *rset, fd_set *wset, fd_set *eset);
  /frameworks/base/core/jni/
android_bluetooth_HeadsetBase.cpp 387 fd_set rset, wset; local
391 FD_ZERO(&wset);
393 FD_SET(nat->rfcomm_sock, &wset);
400 &wset,
420 /* n must be equal to 1 and either rset or wset must have the
424 FD_ISSET(nat->rfcomm_sock, &wset))
  /bionic/libc/netbsd/resolv/
res_send.c 918 fd_set rset, wset; local
938 res = retrying_select(sock, &rset, &wset, &finish);
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.c 326 fd_set wset; local
333 FD_ZERO(&wset);
337 FD_SET( fd, &wset );
338 selectval = select( fd+1, NULL, &wset, NULL, &timeout);
340 if (!selectval || !FD_ISSET(fd, &wset)) { Log("MySend - timeout"); return -1; }
    [all...]

Completed in 512 milliseconds