Lines Matching refs:fds
152 fd_set fds; in monitor_socket() local
153 FD_ZERO(&fds); in monitor_socket()
154 FD_SET(ctrl_fd, &fds); in monitor_socket()
155 FD_SET(fd, &fds); in monitor_socket()
156 int res = select(std::max(fd, ctrl_fd) + 1, &fds, NULL, NULL, NULL); in monitor_socket()
159 if (FD_ISSET(ctrl_fd, &fds)) { in monitor_socket()
282 struct pollfd fds[1]; in wait_hcidev() local
306 fds[0].fd = fd; in wait_hcidev()
307 fds[0].events = POLLIN; in wait_hcidev()
324 OSI_NO_INTR(n = poll(fds, 1, MGMT_EV_POLL_TIMEOUT)); in wait_hcidev()
335 if (fds[0].revents & POLLIN) { in wait_hcidev()