Lines Matching defs:select
429 import select
430 _has_poll = hasattr(select, 'poll')
434 # When select or poll has indicated that the file is writable,
437 _PIPE_BUF = getattr(select, 'PIPE_BUF', 512)
785 # all, using select() or threads is unnecessary.
1045 # impossible to combine with select (unless forcing no
1394 # impossible to combine with select (unless forcing no
1412 poller = select.poll()
1423 register_and_append(self.stdin, select.POLLOUT)
1425 select_POLLIN_POLLPRI = select.POLLIN | select.POLLPRI
1437 except select.error, e:
1443 if mode & select.POLLOUT:
1485 rlist, wlist, xlist = select.select(read_set, write_set, [])
1486 except select.error, e: