HomeSort by relevance Sort by last modified time
    Searched defs:pset (Results 1 - 3 of 3) sorted by null

  /external/openssl/crypto/rand/
rand_unix.c 216 struct pollfd pset; local
218 pset.fd = fd;
219 pset.events = POLLIN;
220 pset.revents = 0;
222 if (poll(&pset, 1, usec / 1000) < 0)
225 try_read = (pset.revents & POLLIN) != 0;
  /external/iproute2/misc/
arpd.c 63 struct pollfd pset[2]; variable in typeref:struct:pollfd
231 if (sendto(pset[0].fd, buf, p-buf, 0, (struct sockaddr*)&sll, sizeof(sll)) < 0)
488 n = recvfrom(pset[0].fd, buf, sizeof(buf), MSG_DONTWAIT,
752 pset[0].fd = socket(PF_PACKET, SOCK_DGRAM, 0);
753 if (pset[0].fd < 0) {
764 if (bind(pset[0].fd, (struct sockaddr*)&sll, sizeof(sll)) < 0) {
774 pset[1].fd = rth.fd;
790 pset[0].events = EVENTS;
791 pset[0].revents = 0;
792 pset[1].events = EVENTS
    [all...]
  /external/ping/
ping.c 637 struct pollfd pset; local
638 pset.fd = icmp_sock;
639 pset.events = POLLIN|POLLERR;
640 pset.revents = 0;
641 if (poll(&pset, 1, next) < 1 ||
642 !(pset.revents&(POLLIN|POLLERR)))
    [all...]

Completed in 746 milliseconds