HomeSort by relevance Sort by last modified time
    Searched refs:poll_fds (Results 1 - 5 of 5) sorted by null

  /frameworks/base/services/common_time/
diag_thread.cpp 202 struct pollfd poll_fds[1]; local
210 memset(&poll_fds, 0, sizeof(poll_fds));
213 poll_fds[0].fd = listen_fd_;
214 poll_fds[0].events = POLLIN;
216 poll_fds[0].fd = data_fd_;
217 poll_fds[0].events = POLLRDHUP | POLLIN;
220 int poll_res = poll(poll_fds, NELEM(poll_fds), 50);
230 if (poll_fds[0].revents)
    [all...]
  /device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/
mm_camera_thread.c 123 poll_cb->poll_fds[poll_cb->num_fds].fd = poll_cb->pfds[0];
124 poll_cb->poll_fds[poll_cb->num_fds].events = POLLIN|POLLRDNORM|POLLPRI;
129 /* fd is valid, we update poll_fds */
130 poll_cb->poll_fds[poll_cb->num_fds].fd = poll_cb->poll_entries[0].fd;
131 poll_cb->poll_fds[poll_cb->num_fds].events = POLLIN|POLLRDNORM|POLLPRI;
137 /* fd is valid, we update poll_fds to this fd */
138 poll_cb->poll_fds[poll_cb->num_fds].fd = poll_cb->poll_entries[i].fd;
139 poll_cb->poll_fds[poll_cb->num_fds].events = POLLIN|POLLRDNORM|POLLPRI;
149 poll_cb->poll_fds[poll_cb->num_fds].fd = -1;
150 poll_cb->poll_fds[poll_cb->num_fds].events = 0
    [all...]
  /external/chromium/net/test/
test_server_posix.cc 64 struct pollfd poll_fds[1]; local
66 poll_fds[0].fd = fd;
67 poll_fds[0].events = POLLIN | POLLPRI;
68 poll_fds[0].revents = 0;
70 int rv = HANDLE_EINTR(poll(poll_fds, 1,
  /system/core/logwrapper/
logwrap.c 296 struct pollfd poll_fds[] = { local
332 if (TEMP_FAILURE_RETRY(poll(poll_fds, ARRAY_SIZE(poll_fds), -1)) < 0) {
338 if (poll_fds[0].revents & POLLIN) {
380 if (poll_fds[0].revents & POLLHUP) {
  /device/lge/mako/camera/QCamera/stack/mm-camera-interface/inc/
mm_camera.h 154 struct pollfd poll_fds[MM_CAMEAR_STRAEM_NUM_MAX+1]; member in struct:__anon1619

Completed in 451 milliseconds