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

  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_events.cpp 83 pollfd poll_fd; local
84 poll_fd.fd = -1;
89 poll_fd.fd = Sys::eventfd_(0, 0);
90 poll_fd.events |= POLLIN;
91 exit_fd_ = poll_fd.fd;
94 poll_fd.fd = Sys::open_(node_path, O_RDONLY);
95 poll_fd.events |= POLLPRI | POLLERR;
98 if (poll_fd.fd < 0) {
101 return poll_fd;
105 Sys::pread_(poll_fd.fd, data , kMaxStringLength, 0)
207 pollfd &poll_fd = poll_fds_[event]; local
    [all...]
  /hardware/qcom/display/msm8998/sdm/libs/core/drm/
hw_events_drm.cpp 227 pollfd &poll_fd = poll_fds_[i]; local
233 if ((poll_fd.revents & POLLIN) &&
234 (Sys::read_(poll_fd.fd, data, kMaxStringLength) > 0)) {
242 if (poll_fd.fd >= 0 && (poll_fd.revents & POLLPRI) &&
243 (Sys::pread_(poll_fd.fd, data, kMaxStringLength, 0) > 0)) {
  /hardware/qcom/display/msm8998/sdm/libs/core/fb/
hw_events.cpp 55 pollfd poll_fd = {0}; local
56 poll_fd.fd = -1;
61 poll_fd.fd = Sys::eventfd_(0, 0);
62 poll_fd.events |= POLLIN;
63 exit_fd_ = poll_fd.fd;
67 poll_fd.fd = Sys::open_(node_path, O_RDONLY);
68 poll_fd.events |= POLLPRI | POLLERR;
71 if (poll_fd.fd < 0) {
74 return poll_fd;
78 Sys::pread_(poll_fd.fd, data , kMaxStringLength, 0)
189 pollfd &poll_fd = poll_fds_[event]; local
    [all...]
  /external/dhcpcd-6.8.2/
eloop.h 77 int poll_fd; member in struct:eloop_ctx
  /external/ltp/utils/sctp/func_tests/
test_tcp_style.c 72 struct pollfd poll_fd; local
169 poll_fd.fd = listen_sk;
170 poll_fd.events = POLLIN;
171 poll_fd.revents = 0;
172 error = poll(&poll_fd, 1, -1);
173 if ((1 != error) && (1 != poll_fd.revents))
176 error, errno, poll_fd.revents);
  /external/libchrome/sandbox/linux/syscall_broker/
broker_process_unittest.cc 571 struct pollfd poll_fd = {reader, POLLIN | POLLRDHUP, 0}; local
572 const int num_events = HANDLE_EINTR(poll(&poll_fd, 1, timeout_in_ms));
573 if (1 == num_events && poll_fd.revents | POLLHUP)
  /external/libusb/libusb/os/
poll_windows.c 73 struct winfd poll_fd[MAX_FDS]; variable in typeref:struct:winfd
111 if ( (poll_fd[_index].fd < 0) || (poll_fd[_index].handle == INVALID_HANDLE_VALUE)
112 || (poll_fd[_index].handle == 0) || (poll_fd[_index].overlapped == NULL) ) {
115 if (poll_fd[_index].itransfer && poll_fd[_index].cancel_fn) {
117 (*poll_fd[_index].cancel_fn)(poll_fd[_index].itransfer);
121 return (*pCancelIoEx)(poll_fd[_index].handle, poll_fd[_index].overlapped)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
control_external.h 111 int poll_fd; member in struct:snd_ctl_ext
pcm_ioplug.h 89 int poll_fd; /**< poll file descriptor */ member in struct:snd_pcm_ioplug
199 /* update poll_fd and mmap_rw */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
control_external.h 111 int poll_fd; member in struct:snd_ctl_ext
pcm_ioplug.h 89 int poll_fd; /**< poll file descriptor */ member in struct:snd_pcm_ioplug
199 /* update poll_fd and mmap_rw */

Completed in 1334 milliseconds