Home | History | Annotate | Download | only in port

Lines Matching defs:poll

104     def poll(self):
106 if it still is (wrapper around subprocess.poll)."""
108 # poll() is not threadsafe and can throw OSError due to:
110 return self._proc.poll()
170 # poll() is not threadsafe and can throw OSError due to:
172 if self._proc.poll() != None:
218 # poll() is not threadsafe and can throw OSError due to:
220 while self._proc.poll() is None and time.time() < timeout:
222 # poll() is not threadsafe and can throw OSError due to:
224 if self._proc.poll() is None: