HomeSort by relevance Sort by last modified time
    Searched defs:pollfd (Results 1 - 24 of 24) sorted by null

  /external/fio/os/windows/posix/include/sys/
poll.h 6 struct pollfd struct
13 int poll(struct pollfd fds[], nfds_t nfds, int timeout);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
poll.h 25 struct pollfd { struct
33 int poll(struct pollfd* __fds, nfds_t __nfds, int __timeout);
  /bionic/libc/kernel/uapi/asm-generic/
poll.h 52 struct pollfd { struct
  /development/ndk/platforms/android-3/arch-arm/include/asm/
poll.h 30 struct pollfd { struct
  /development/ndk/platforms/android-3/include/asm-generic/
poll.h 40 struct pollfd { struct
  /development/ndk/platforms/android-L/include/asm-generic/
poll.h 51 struct pollfd { struct
  /external/kernel-headers/original/uapi/asm-generic/
poll.h 35 struct pollfd { struct
  /external/chromium_org/content/common/gpu/media/
exynos_v4l2_video_device.cc 49 struct pollfd pollfds[2];
51 int pollfd = -1; local
61 pollfd = nfds;
69 *event_pending = (pollfd != -1 && pollfds[pollfd].revents & POLLPRI);
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.h 61 struct pollfd { struct
88 int usbi_poll(struct pollfd *fds, unsigned int nfds, int timeout);
openbsd_usb.c 77 static int obsd_handle_events(struct libusb_context *ctx, struct pollfd *,
532 obsd_handle_events(struct libusb_context *ctx, struct pollfd *fds, nfds_t nfds,
538 struct pollfd *pollfd; local
545 pollfd = &fds[i];
547 if (!pollfd->revents)
556 if (hpriv->pipe[0] == pollfd->fd)
563 usbi_dbg("fd %d is not an event pipe!", pollfd->fd);
568 if (pollfd->revents & POLLERR) {
darwin_usb.c 1815 struct pollfd *pollfd = &fds[i]; local
    [all...]
linux_usbfs.c 2498 struct pollfd *pollfd = &fds[i]; local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
evlist.h 12 struct pollfd;
44 struct pollfd *pollfd; member in struct:perf_evlist
  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
sched-messaging.c 76 struct pollfd pollfd = { .fd = wakefd, .events = POLLIN }; local
83 if (poll(&pollfd, 1, -1) != 1)
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
socket_test.cc 384 struct pollfd pollfd = { sock_, POLLIN|POLLOUT, 0 }; local
385 ASSERT_EQ(1, ki_poll(&pollfd, 1, -1));
386 ASSERT_EQ(POLLOUT, pollfd.revents);
703 struct pollfd pollfd = { server_sock, POLLIN|POLLOUT, 0 }; local
704 ASSERT_EQ(0, ki_poll(&pollfd, 1, 0));
714 pollfd.fd = server_sock;
715 pollfd.events = POLLIN | POLLOUT;
716 ASSERT_EQ(1, ki_poll(&pollfd, 1, -1))
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/
io.c 1947 struct libusb_pollfd *pollfd = &ipollfd->pollfd; local
    [all...]
libusbi.h 259 /* user callbacks for pollfd changes */
460 struct libusb_pollfd pollfd; member in struct:usbi_pollfd
    [all...]
  /external/libusb/libusb/
io.c 1795 struct libusb_pollfd *pollfd = &ipollfd->pollfd; local
    [all...]
libusbi.h 175 /* user callbacks for pollfd changes */
316 struct libusb_pollfd pollfd; member in struct:usbi_pollfd
740 * The function is passed an array of pollfd structures (size nfds)
764 struct pollfd *fds, nfds_t nfds, int num_ready);
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
VpnTest.java 265 StructPollfd pollfd = new StructPollfd(); local
266 pollfd.events = (short) POLLIN; // "error: possible loss of precision"
267 pollfd.fd = s;
268 int ret = Os.poll(new StructPollfd[] { pollfd }, SOCKET_TIMEOUT_MS);
  /external/libusb/libusb/os/
darwin_usb.c 1393 struct pollfd *pollfd = &fds[i]; local
    [all...]
linux_usbfs.c 2109 struct pollfd *pollfd = &fds[i]; local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_unixos.h 525 struct pollfd { struct
545 #define POLLNVAL 0x0020 /* invalid pollfd entry */
547 extern int poll(struct pollfd *, unsigned long, int);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.cc 967 CHECK_TYPE_SIZE(pollfd); variable
    [all...]

Completed in 1541 milliseconds