/external/openssl/crypto/rand/ |
rand_unix.c | 265 struct pollfd pset; local 267 pset.fd = fd; 268 pset.events = POLLIN; 269 pset.revents = 0; 271 if (poll(&pset, 1, usec / 1000) < 0) 274 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 | 639 struct pollfd pset; local 640 pset.fd = icmp_sock; 641 pset.events = POLLIN|POLLERR; 642 pset.revents = 0; 643 if (poll(&pset, 1, next) < 1 || 644 !(pset.revents&(POLLIN|POLLERR))) [all...] |
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-darwin.c | 4300 mach_port_name_t pset; member in struct:__anon12275 4821 mach_port_name_t pset; member in struct:__anon12296 [all...] |