Home | History | Annotate | Download | only in common_lib

Lines Matching refs:maxread

219         child = spawn(command, maxread=2000, logfile=logfile, cwd=cwd, env=env)
221 child = spawn(command, timeout=timeout, maxread=2000, logfile=logfile, cwd=cwd, env=env)
267 def __init__(self, command, args=[], timeout=30, maxread=2000, searchwindowsize=None, logfile=None, cwd=None, env=None):
302 The maxread attribute sets the read buffer size. This is maximum number
304 the maxread size to 1 will turn off buffering. Setting the maxread
402 self.maxread = maxread # max bytes to read at one time into buffer
403 self.buffer = '' # This is the read buffer. See maxread.
475 s.append('maxread: ' + str(self.maxread))
1378 c = self.read_nonblocking (self.maxread, timeout)
1563 def setmaxread (self, maxread):
1568 raise ExceptionPexpect ('This method is no longer supported or allowed. Just assign a value to the maxread member variable.')