Searched refs:pollfds (Results 1 – 2 of 2) sorted by relevance
572 struct pollfd pollfds[4] = { in RunPollLoop() local584 int res = TEMP_FAILURE_RETRY(poll(pollfds, 4, -1)); in RunPollLoop()591 const struct pollfd& agent_control_sock_poll = pollfds[1]; in RunPollLoop()592 const struct pollfd& control_sock_poll = pollfds[2]; in RunPollLoop()593 const struct pollfd& adb_socket_poll = pollfds[3]; in RunPollLoop()
191 struct pollfd pollfds[2]; in ReadFully() local210 pollfds[0] = { read_fd_, POLLRDHUP | POLLIN, 0 }; in ReadFully()211 pollfds[1] = { wakeup_fd_, POLLIN, 0 }; in ReadFully()217 int poll_res = TEMP_FAILURE_RETRY(poll(pollfds, 2, -1)); in ReadFully()