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

  /system/core/libcutils/
socket_network_client_unix.c 83 fd_set r_set; local
84 FD_ZERO(&r_set);
85 FD_SET(s, &r_set);
86 fd_set w_set = r_set;
91 if ((rc = select(s + 1, &r_set, &w_set, NULL, (timeout != 0) ? &ts : NULL)) == -1) {
103 if (FD_ISSET(s, &r_set) || FD_ISSET(s, &w_set)) {
  /external/libpcap/
pcap-bpf.c 317 fd_set r_set; local
363 FD_ZERO(&r_set);
364 FD_SET(p->fd, &r_set);
369 r = select(p->fd + 1, &r_set, NULL, NULL,
    [all...]

Completed in 62 milliseconds