Searched defs:poll_fd (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/ui/events/platform/x11/
H A Dx11_event_source_glib.cc18 GPollFD* poll_fd; member in struct:ui::__anon16782::GLibX11Source
76 glib_x_source->poll_fd = x_poll_.get();
/external/chromium_org/net/socket/
H A Dunix_domain_listen_socket_posix_unittest.cc329 struct pollfd poll_fd; local
330 poll_fd.fd = sock;
331 poll_fd.events = POLLIN;
332 poll(&poll_fd, 1, -1 /* rely on GTest for timeout handling */);
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dpoll_windows.c71 struct winfd poll_fd[MAX_FDS]; variable in typeref:struct:winfd
109 if ( (poll_fd[_index].fd < 0) || (poll_fd[_index].handle == INVALID_HANDLE_VALUE)
110 || (poll_fd[_index].handle == 0) || (poll_fd[_index].overlapped == NULL) ) {
113 if (poll_fd[_index].itransfer && poll_fd[_index].cancel_fn) {
115 (*poll_fd[_index].cancel_fn)(poll_fd[_index].itransfer);
119 return (*pCancelIoEx)(poll_fd[_inde
[all...]
/external/chromium_org/sandbox/linux/tests/
H A Dunit_tests.cc191 struct pollfd poll_fd = {fds[0], POLLIN | POLLRDHUP, 0}; local
197 while ((poll_ret = poll(&poll_fd, 1, poll_timeout) > 0)) {
/external/chromium_org/components/crash/app/
H A Dbreakpad_linux.cc1039 struct kernel_pollfd poll_fd; local
1040 poll_fd.fd = fd;
1041 poll_fd.events = POLLIN | POLLPRI | POLLERR;
1042 int ret = sys_poll(&poll_fd, 1, 500);

Completed in 192 milliseconds