Searched refs:write_set_fds (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Modules/ |
D | linuxaudiodev.c | 184 fd_set write_set_fds; in lad_write() local 192 FD_ZERO(&write_set_fds); in lad_write() 193 FD_SET(self->x_fd, &write_set_fds); in lad_write() 198 select_retval = select(self->x_fd+1, NULL, &write_set_fds, NULL, &tv); in lad_write()
|
D | ossaudiodev.c | 416 fd_set write_set_fds; in oss_writeall() local 435 FD_ZERO(&write_set_fds); in oss_writeall() 436 FD_SET(self->fd, &write_set_fds); in oss_writeall() 440 select_rv = select(self->fd+1, NULL, &write_set_fds, NULL, NULL); in oss_writeall()
|
/external/python/cpython3/Modules/ |
D | ossaudiodev.c | 458 fd_set write_set_fds; in oss_writeall() local 481 FD_ZERO(&write_set_fds); in oss_writeall() 482 FD_SET(self->fd, &write_set_fds); in oss_writeall() 488 select_rv = select(self->fd+1, NULL, &write_set_fds, NULL, NULL); in oss_writeall()
|