pollfd             92 content/browser/renderer_host/render_sandbox_host_linux.cc     struct pollfd pfds[2];
pollfd             45 content/common/gpu/media/exynos_v4l2_video_device.cc   struct pollfd pollfds[2];
pollfd             47 content/common/gpu/media/exynos_v4l2_video_device.cc   int pollfd = -1;
pollfd             57 content/common/gpu/media/exynos_v4l2_video_device.cc     pollfd = nfds;
pollfd             65 content/common/gpu/media/exynos_v4l2_video_device.cc   *event_pending = (pollfd != -1 && pollfds[pollfd].revents & POLLPRI);
pollfd           1053 content/common/gpu/media/exynos_video_encode_accelerator.cc   struct pollfd pollfds[3];
pollfd             67 device/bluetooth/bluetooth_socket_chromeos.cc       struct pollfd pollfd;
pollfd             69 device/bluetooth/bluetooth_socket_chromeos.cc       pollfd.fd = fd_;
pollfd             70 device/bluetooth/bluetooth_socket_chromeos.cc       pollfd.events = 0;
pollfd             71 device/bluetooth/bluetooth_socket_chromeos.cc       pollfd.revents = 0;
pollfd             74 device/bluetooth/bluetooth_socket_chromeos.cc       if (HANDLE_EINTR(poll(&pollfd, 1, 0)) < 0) {
pollfd             81 device/bluetooth/bluetooth_socket_chromeos.cc       if (pollfd.revents & POLLHUP) {
pollfd             91 media/midi/midi_manager_alsa.cc   int SetupPollDescriptors(struct pollfd* pfds, unsigned int count) {
pollfd             95 media/midi/midi_manager_alsa.cc   unsigned short GetPollDescriptorsRevents(struct pollfd* pfds) {
pollfd             43 media/midi/midi_manager_alsa.h   std::vector<struct pollfd> poll_fds_;
pollfd             34 native_client_sdk/src/libraries/nacl_io/include/sys/poll.h int poll(struct pollfd *__fds, nfds_t __nfds, int __timeout);
pollfd            350 native_client_sdk/src/libraries/nacl_io/kernel_intercept.cc int ki_poll(struct pollfd *fds, nfds_t nfds, int timeout) {
pollfd            118 native_client_sdk/src/libraries/nacl_io/kernel_intercept.h int ki_poll(struct pollfd *fds, nfds_t nfds, int timeout);
pollfd           1033 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   std::vector<pollfd> pollfds;
pollfd           1056 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc       pollfd info;
pollfd           1089 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc     pollfd* info = &pollfds[index];
pollfd           1110 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   std::vector<struct pollfd*> fds;
pollfd           1116 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc int KernelProxy::poll(struct pollfd *fds, nfds_t nfds, int timeout) {
pollfd           1124 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc     struct pollfd* fd_info = &fds[index];
pollfd           1183 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc           struct pollfd* fd_info = poll_info->fds[findex];
pollfd            161 native_client_sdk/src/libraries/nacl_io/kernel_proxy.h   virtual int poll(struct pollfd *fds, nfds_t nfds, int timeout);
pollfd            283 native_client_sdk/src/libraries/nacl_io/kernel_wrap_bionic.cc int WRAP(poll)(struct pollfd *fds, nfds_t nfds, int timeout, int* count) {
pollfd            247 native_client_sdk/src/libraries/nacl_io/kernel_wrap_glibc.cc int WRAP(poll)(struct pollfd *fds, nfds_t nfds, int timeout, int* count) {
pollfd             10 native_client_sdk/src/libraries/nacl_io/syscalls/poll.c int poll(struct pollfd *fds, nfds_t nfds, int timeout) {
pollfd            384 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   struct pollfd pollfd = { sock_, POLLIN|POLLOUT, 0 };
pollfd            385 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   ASSERT_EQ(1, ki_poll(&pollfd, 1, -1));
pollfd            386 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   ASSERT_EQ(POLLOUT, pollfd.revents);
pollfd            669 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   struct pollfd pollfd = { server_sock, POLLIN|POLLOUT, 0 };
pollfd            670 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   ASSERT_EQ(0, ki_poll(&pollfd, 1, 0));
pollfd            680 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   pollfd.fd = server_sock;
pollfd            681 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   pollfd.events = POLLIN | POLLOUT;
pollfd            682 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   ASSERT_EQ(1, ki_poll(&pollfd, 1, -1));
pollfd            695 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   pollfd.fd = server_sock;
pollfd            696 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   pollfd.events = POLLIN | POLLOUT;
pollfd            697 native_client_sdk/src/tests/nacl_io_socket_test/socket_test.cc   ASSERT_EQ(0, ki_poll(&pollfd, 1, 0));
pollfd            248 native_client_sdk/src/tests/nacl_io_test/event_test.cc   struct pollfd pollfds[MAX_FDS];
pollfd            561 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc   struct pollfd fds;
pollfd             73 native_client_sdk/src/tests/nacl_io_test/mock_kernel_proxy.h   MOCK_METHOD3(poll, int(struct pollfd*, nfds_t, int));
pollfd            325 net/socket/unix_domain_socket_posix_unittest.cc   struct pollfd poll_fd;
pollfd             68 net/test/spawned_test_server/local_test_server_posix.cc     struct pollfd poll_fds[1];
pollfd            161 sandbox/linux/tests/unit_tests.cc   struct pollfd poll_fd = {fds[0], POLLIN | POLLRDHUP, 0};
pollfd             65 third_party/libevent/devpoll.c 	struct pollfd *events;
pollfd             68 third_party/libevent/devpoll.c 	struct pollfd *changes;
pollfd             98 third_party/libevent/devpoll.c 		sizeof(struct pollfd) * devpollop->nchanges, 0) == -1)
pollfd            107 third_party/libevent/devpoll.c 	struct pollfd *pfd;
pollfd            154 third_party/libevent/devpoll.c 	devpollop->events = calloc(nfiles, sizeof(struct pollfd));
pollfd            171 third_party/libevent/devpoll.c 	devpollop->changes = calloc(nfiles, sizeof(struct pollfd));
pollfd            216 third_party/libevent/devpoll.c 	struct pollfd *events = devpollop->events;
pollfd             60 third_party/libevent/poll.c 	struct pollfd *event_set;
pollfd            127 third_party/libevent/poll.c 		struct pollfd *pfd = &pop->event_set[i];
pollfd            208 third_party/libevent/poll.c 	struct pollfd *pfd = NULL;
pollfd            218 third_party/libevent/poll.c 		struct pollfd *tmp_event_set;
pollfd            230 third_party/libevent/poll.c 				 tmp_event_count * sizeof(struct pollfd));
pollfd            313 third_party/libevent/poll.c 	struct pollfd *pfd = NULL;
pollfd            352 third_party/libevent/poll.c 		       sizeof(struct pollfd));
pollfd           1930 third_party/libusb/src/libusb/io.c 	struct pollfd *fds = NULL;
pollfd           1947 third_party/libusb/src/libusb/io.c 		struct libusb_pollfd *pollfd = &ipollfd->pollfd;
pollfd           1948 third_party/libusb/src/libusb/io.c 		int fd = pollfd->fd;
pollfd           1951 third_party/libusb/src/libusb/io.c 		fds[i].events = pollfd->events;
pollfd           2429 third_party/libusb/src/libusb/io.c 	ipollfd->pollfd.fd = fd;
pollfd           2430 third_party/libusb/src/libusb/io.c 	ipollfd->pollfd.events = events;
pollfd           2449 third_party/libusb/src/libusb/io.c 		if (ipollfd->pollfd.fd == fd) {
pollfd            460 third_party/libusb/src/libusb/libusbi.h 	struct libusb_pollfd pollfd;
pollfd            955 third_party/libusb/src/libusb/libusbi.h 		struct pollfd *fds, POLL_NFDS_TYPE nfds, int num_ready);
pollfd           1807 third_party/libusb/src/libusb/os/darwin_usb.c static int op_handle_events(struct libusb_context *ctx, struct pollfd *fds, POLL_NFDS_TYPE nfds, int num_ready) {
pollfd           1815 third_party/libusb/src/libusb/os/darwin_usb.c     struct pollfd *pollfd = &fds[i];
pollfd           1817 third_party/libusb/src/libusb/os/darwin_usb.c     usbi_dbg ("checking fd %i with revents = %x", pollfd->fd, pollfd->revents);
pollfd           1819 third_party/libusb/src/libusb/os/darwin_usb.c     if (!pollfd->revents)
pollfd           1824 third_party/libusb/src/libusb/os/darwin_usb.c     if (pollfd->revents & POLLERR) {
pollfd           1830 third_party/libusb/src/libusb/os/darwin_usb.c     ret = read (pollfd->fd, &message, sizeof (message));
pollfd            307 third_party/libusb/src/libusb/os/linux_netlink.c 	struct pollfd fds[] = {
pollfd            166 third_party/libusb/src/libusb/os/linux_udev.c 	struct pollfd fds[] = {
pollfd           2491 third_party/libusb/src/libusb/os/linux_usbfs.c 	struct pollfd *fds, POLL_NFDS_TYPE nfds, int num_ready)
pollfd           2498 third_party/libusb/src/libusb/os/linux_usbfs.c 		struct pollfd *pollfd = &fds[i];
pollfd           2502 third_party/libusb/src/libusb/os/linux_usbfs.c 		if (!pollfd->revents)
pollfd           2508 third_party/libusb/src/libusb/os/linux_usbfs.c 			if (hpriv->fd == pollfd->fd)
pollfd           2512 third_party/libusb/src/libusb/os/linux_usbfs.c 		if (pollfd->revents & POLLERR) {
pollfd             77 third_party/libusb/src/libusb/os/openbsd_usb.c static int obsd_handle_events(struct libusb_context *ctx, struct pollfd *,
pollfd            532 third_party/libusb/src/libusb/os/openbsd_usb.c obsd_handle_events(struct libusb_context *ctx, struct pollfd *fds, nfds_t nfds,
pollfd            538 third_party/libusb/src/libusb/os/openbsd_usb.c 	struct pollfd *pollfd;
pollfd            545 third_party/libusb/src/libusb/os/openbsd_usb.c 		pollfd = &fds[i];
pollfd            547 third_party/libusb/src/libusb/os/openbsd_usb.c 		if (!pollfd->revents)
pollfd            556 third_party/libusb/src/libusb/os/openbsd_usb.c 			if (hpriv->pipe[0] == pollfd->fd)
pollfd            563 third_party/libusb/src/libusb/os/openbsd_usb.c 			usbi_dbg("fd %d is not an event pipe!", pollfd->fd);
pollfd            568 third_party/libusb/src/libusb/os/openbsd_usb.c 		if (pollfd->revents & POLLERR) {
pollfd            507 third_party/libusb/src/libusb/os/poll_windows.c int usbi_poll(struct pollfd *fds, unsigned int nfds, int timeout)
pollfd             88 third_party/libusb/src/libusb/os/poll_windows.h int usbi_poll(struct pollfd *fds, unsigned int nfds, int timeout);
pollfd            812 third_party/libusb/src/libusb/os/wince_usb.c 	struct pollfd *fds, POLL_NFDS_TYPE nfds, int num_ready)
pollfd           2101 third_party/libusb/src/libusb/os/windows_usb.c static int windows_handle_events(struct libusb_context *ctx, struct pollfd *fds, POLL_NFDS_TYPE nfds, int num_ready)
pollfd            451 third_party/libxml/src/nanohttp.c     struct pollfd p;
pollfd            524 third_party/libxml/src/nanohttp.c     struct pollfd p;
pollfd            855 third_party/libxml/src/nanohttp.c     struct pollfd p;
pollfd            197 third_party/npapi/npspy/extern/nspr/md/_aix.h 	struct pollfd *ioq_pollfds;
pollfd            161 third_party/npapi/npspy/extern/nspr/md/_bsdi.h 	struct pollfd *ioq_pollfds;
pollfd            185 third_party/npapi/npspy/extern/nspr/md/_darwin.h 	struct pollfd *ioq_pollfds;
pollfd            151 third_party/npapi/npspy/extern/nspr/md/_dgux.h     struct pollfd *ioq_pollfds;
pollfd            216 third_party/npapi/npspy/extern/nspr/md/_dgux.h extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
pollfd            184 third_party/npapi/npspy/extern/nspr/md/_freebsd.h 	struct pollfd *ioq_pollfds;
pollfd            176 third_party/npapi/npspy/extern/nspr/md/_hpux.h 	struct pollfd *ioq_pollfds;
pollfd            297 third_party/npapi/npspy/extern/nspr/md/_irix.h 	struct pollfd *ioq_pollfds;
pollfd            452 third_party/npapi/npspy/extern/nspr/md/_irix.h extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
pollfd            414 third_party/npapi/npspy/extern/nspr/md/_linux.h 	struct pollfd *ioq_pollfds;
pollfd            488 third_party/npapi/npspy/extern/nspr/md/_linux.h extern int __syscall_poll(struct pollfd *ufds, unsigned long int nfds,
pollfd            162 third_party/npapi/npspy/extern/nspr/md/_ncr.h 	struct pollfd *ioq_pollfds;
pollfd            225 third_party/npapi/npspy/extern/nspr/md/_ncr.h extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
pollfd            146 third_party/npapi/npspy/extern/nspr/md/_nec.h 	struct pollfd *ioq_pollfds;
pollfd            240 third_party/npapi/npspy/extern/nspr/md/_netbsd.h 	struct pollfd *ioq_pollfds;
pollfd            179 third_party/npapi/npspy/extern/nspr/md/_nextstep.h 	struct pollfd *ioq_pollfds;
pollfd            153 third_party/npapi/npspy/extern/nspr/md/_nspr_pthread.h 	struct pollfd *ioq_pollfds;
pollfd            165 third_party/npapi/npspy/extern/nspr/md/_nto.h     struct pollfd *ioq_pollfds;
pollfd            175 third_party/npapi/npspy/extern/nspr/md/_openbsd.h 	struct pollfd *ioq_pollfds;
pollfd            241 third_party/npapi/npspy/extern/nspr/md/_openvms.h       struct pollfd *ioq_pollfds;
pollfd            307 third_party/npapi/npspy/extern/nspr/md/_openvms.h extern int __poll(struct pollfd filedes[], unsigned int nfds, int timeout);
pollfd            177 third_party/npapi/npspy/extern/nspr/md/_osf1.h 	struct pollfd *ioq_pollfds;
pollfd            237 third_party/npapi/npspy/extern/nspr/md/_osf1.h extern int __poll(struct pollfd filedes[], unsigned int nfds, int timeout);
pollfd            156 third_party/npapi/npspy/extern/nspr/md/_qnx.h     struct pollfd *ioq_pollfds;
pollfd            147 third_party/npapi/npspy/extern/nspr/md/_reliantunix.h 	struct pollfd *ioq_pollfds;
pollfd            147 third_party/npapi/npspy/extern/nspr/md/_rhapsody.h 	struct pollfd *ioq_pollfds;
pollfd            152 third_party/npapi/npspy/extern/nspr/md/_scoos.h 	struct pollfd *ioq_pollfds;
pollfd            416 third_party/npapi/npspy/extern/nspr/md/_solaris.h 	struct pollfd *ioq_pollfds;
pollfd            449 third_party/npapi/npspy/extern/nspr/md/_solaris.h extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
pollfd            733 third_party/npapi/npspy/extern/nspr/md/_solaris.h 	struct pollfd *ioq_pollfds;
pollfd            799 third_party/npapi/npspy/extern/nspr/md/_solaris.h extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
pollfd            137 third_party/npapi/npspy/extern/nspr/md/_sony.h 	struct pollfd *ioq_pollfds;
pollfd            185 third_party/npapi/npspy/extern/nspr/md/_sony.h extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
pollfd            181 third_party/npapi/npspy/extern/nspr/md/_sunos4.h 	struct pollfd *ioq_pollfds;
pollfd            547 third_party/npapi/npspy/extern/nspr/md/_unixos.h extern int poll(struct pollfd *, unsigned long, int);
pollfd            151 third_party/npapi/npspy/extern/nspr/md/_unixware.h 	struct pollfd *ioq_pollfds;
pollfd            214 third_party/npapi/npspy/extern/nspr/md/_unixware.h extern int _poll(struct pollfd *fds, unsigned long nfds, int timeout);
pollfd            208 third_party/tcmalloc/chromium/src/symbolize.cc       struct pollfd pfd = { child_in[1], POLLOUT, 0 };
pollfd            403 third_party/tcmalloc/chromium/src/windows/port.h inline int poll(struct pollfd* fds, int nfds, int timeout) {
pollfd            208 third_party/tcmalloc/vendor/src/symbolize.cc       struct pollfd pfd = { child_in[1], POLLOUT, 0 };
pollfd            400 third_party/tcmalloc/vendor/src/windows/port.h inline int poll(struct pollfd* fds, int nfds, int timeout) {