Searched defs:pollfd (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/Include/sys/
H A Dpoll.h57 struct pollfd { struct
88 int poll(struct pollfd *, nfds_t, int);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_ssl.c1131 struct pollfd pollfd; local
1134 pollfd.fd = s->sock_fd;
1135 pollfd.events = writing ? POLLOUT : POLLIN;
1140 rc = poll(&pollfd, 1, timeout);
H A Dsocketmodule.c684 struct pollfd pollfd; local
687 pollfd.fd = s->sock_fd;
688 pollfd.events = writing ? POLLOUT : POLLIN;
692 n = poll(&pollfd, 1, timeout);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dsocketmodule.c700 struct pollfd pollfd; local
703 pollfd.fd = s->sock_fd;
704 pollfd.events = writing ? POLLOUT : POLLIN;
708 n = poll(&pollfd, 1, timeout);

Completed in 89 milliseconds