Lines Matching refs:select
39 If your operating system supports the select() system call in its I/O
49 import select
112 if flags & select.POLLIN:
114 if flags & select.POLLOUT:
116 if flags & select.POLLPRI:
118 if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
149 r, w, e = select.select(r, w, e, timeout)
170 # Use the poll() support added to the select module in Python 2.0
176 pollster = select.poll()
181 flags |= select.POLLIN | select.POLLPRI
184 flags |= select.POLLOUT
201 if use_poll and hasattr(select, 'poll'):
308 # predicates for select()
310 # to pass to select().
452 # we can get here when select.select() says that there is an
579 # digging through the linux kernel), I've determined that select()