Home | History | Annotate | Download | only in pexpect-2.4

Lines Matching refs:read_nonblocking

401         self.logfile_read = None # input from child (read_nonblocking)
774 def read_nonblocking (self, size = 1, timeout = -1):
789 read_nonblocking(size=100, timeout=30) and only one character is
797 raise ValueError ('I/O operation on closed file in read_nonblocking().')
811 raise EOF ('End Of File (EOF) in read_nonblocking(). Braindead platform.')
818 raise EOF ('End Of File (EOF) in read_nonblocking(). Pokey platform.')
827 raise EOF ('End of File (EOF) in read_nonblocking(). Very pokey platform.')
829 raise TIMEOUT ('Timeout exceeded in read_nonblocking().')
836 raise EOF ('End Of File (EOF) in read_nonblocking(). Exception style platform.')
839 raise EOF ('End Of File (EOF) in read_nonblocking(). Empty string style platform.')
850 raise ExceptionPexpect ('Reached an unexpected state in read_nonblocking().')
1131 # been set in read_nonblocking(), so this should be safe.
1158 # for Irix which seems to require a blocking call on waitpid or select, so I let read_nonblocking
1383 c = self.read_nonblocking (self.maxread, timeout)