Searched refs:pset (Results 1 - 6 of 6) sorted by relevance

/external/openssl/crypto/rand/
H A Drand_unix.c305 struct pollfd pset; local
307 pset.fd = fd;
308 pset.events = POLLIN;
309 pset.revents = 0;
311 if (poll(&pset, 1, usec / 1000) < 0)
314 try_read = (pset.revents & POLLIN) != 0;
/external/iproute2/misc/
H A Darpd.c63 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[
[all...]
/external/oprofile/libpp/
H A Darrange_profiles.cpp719 ostream & operator<<(ostream & out, profile_set const & pset) argument
721 out << "image: " << pset.image << endl;
725 pset.files.end();
727 for (it = pset.files.begin(); it != end; ++it)
731 list<profile_dep_set>::const_iterator const cend = pset.deps.end();
733 for (cit = pset.deps.begin(); cit != cend; ++cit)
/external/openssl/crypto/x509v3/
H A Dpcy_tree.c82 STACK_OF(ASN1_OBJECT) *pset = node->data->expected_policy_set;
85 for (i = 0; i < sk_ASN1_OBJECT_num(pset); i++)
87 oid = sk_ASN1_OBJECT_value(pset, i);
/external/ping/
H A Dping.c639 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)))
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c4424 mach_port_name_t pset; member in struct:__anon14291
4432 req->name, req->pset);
4945 mach_port_name_t pset; member in struct:__anon14312
4952 name_for_port(MACH_REMOTE), req->name, req->pset);

Completed in 801 milliseconds