Searched refs:num_pollfds (Results 1 – 5 of 5) sorted by relevance
/external/adhd/cras/src/server/ |
D | cras_server.c | 417 unsigned int num_pollfds, poll_size_needed; in cras_server_run() local 513 num_pollfds = 1; in cras_server_run() 516 pollfds[num_pollfds].fd = elm->fd; in cras_server_run() 517 pollfds[num_pollfds].events = POLLIN; in cras_server_run() 518 elm->pollfd = &pollfds[num_pollfds]; in cras_server_run() 519 num_pollfds++; in cras_server_run() 524 pollfds[num_pollfds].fd = client_cb->select_fd; in cras_server_run() 525 pollfds[num_pollfds].events = POLLIN; in cras_server_run() 526 client_cb->pollfd = &pollfds[num_pollfds]; in cras_server_run() 527 num_pollfds++; in cras_server_run() [all …]
|
D | audio_thread.c | 1527 unsigned int num_pollfds; in audio_io_thread() local 1551 num_pollfds = 1; in audio_io_thread() 1562 num_pollfds = 1; in audio_io_thread() 1567 pollfds[num_pollfds].fd = iodev_cb->fd; in audio_io_thread() 1568 iodev_cb->pollfd = &pollfds[num_pollfds]; in audio_io_thread() 1570 pollfds[num_pollfds].events = POLLOUT; in audio_io_thread() 1572 pollfds[num_pollfds].events = POLLIN; in audio_io_thread() 1573 num_pollfds++; in audio_io_thread() 1574 if (num_pollfds >= pollfds_size) { in audio_io_thread() 1588 pollfds[num_pollfds].fd = fd; in audio_io_thread() [all …]
|
/external/adhd/cras/src/libcras/ |
D | cras_client.c | 1920 unsigned int num_pollfds, i; in client_thread() local 1927 num_pollfds = 0; in client_thread() 1931 cbs[num_pollfds] = sock_file_wait_dispatch; in client_thread() 1932 pollfds[num_pollfds].fd = rc; in client_thread() 1933 pollfds[num_pollfds].events = POLLIN; in client_thread() 1934 pollfds[num_pollfds].revents = 0; in client_thread() 1935 num_pollfds++; in client_thread() 1940 cbs[num_pollfds] = server_fd_dispatch; in client_thread() 1941 server_fill_pollfd(client, &(pollfds[num_pollfds])); in client_thread() 1942 num_pollfds++; in client_thread() [all …]
|
/external/libcups/cups/ |
D | http-support.c | 130 static int http_poll_cb(struct pollfd *pollfds, unsigned int num_pollfds, 2467 unsigned int num_pollfds, /* I - Number of file descriptors */ in http_poll_cb() argument 2474 return (poll(pollfds, num_pollfds, 2000)); in http_poll_cb()
|
D | dest.c | 213 unsigned int num_pollfds, 3033 unsigned int num_pollfds, /* I - Number of file descriptors */ in cups_dnssd_poll_cb() argument 3042 …poll_cb(pollfds=%p, num_pollfds=%d, timeout=%d, context=%p)", pollfds, num_pollfds, timeout, conte… in cups_dnssd_poll_cb() 3046 val = poll(pollfds, num_pollfds, _CUPS_DNSSD_MAXTIME); in cups_dnssd_poll_cb()
|