Searched refs:xonxoff (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialutil.py245 xonxoff=False, # enable software flow control
276 self.xonxoff = xonxoff
430 def setXonXoff(self, xonxoff):
432 self._xonxoff = xonxoff
439 xonxoff = property(getXonXoff, setXonXoff, doc="XON/XOFF setting") variable in class:SerialBase
488 _SETTINGS = ('baudrate', 'bytesize', 'parity', 'stopbits', 'xonxoff',
508 return "%s<id=0x%x, open=%s>(port=%r, baudrate=%r, bytesize=%r, parity=%r, stopbits=%r, timeout=%r, xonxoff=%r, rtscts=%r, dsrdtr=%r)" % (
518 self.xonxoff,
H A Dsermsdos.py77 xonxoff: enable software flow control
88 xonxoff = 0,
H A Dserialjava.py250 xonxoff=0, # enable software flow control variable in class:.Serial
H A Drfc2217.py498 raise ValueError('xonxoff and rtscts together are not supported')
1181 if self.serial.xonxoff:
1188 self.serial.xonxoff = False
1194 self.serial.xonxoff = True
H A Dserialposix.py392 # xonxoff
414 # XXX should there be a warning if setting up rtscts (and xonxoff etc) fails??
692 xonxoff=0, # enable software flow control
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py169 def __init__(self, port, baudrate, parity, rtscts, xonxoff, echo=False, convert_outgoing=CONVERT_CRLF, repr_mode=0):
171 self.serial = serial.serial_for_url(port, baudrate, parity=parity, rtscts=rtscts, xonxoff=xonxoff, timeout=1)
175 self.serial = serial.Serial(port, baudrate, parity=parity, rtscts=rtscts, xonxoff=xonxoff, timeout=1)
235 sys.stderr.write('--- software flow control: %s\n' % (self.serial.xonxoff and 'active' or 'inactive'))
438 self.serial.xonxoff = (c == 'X')
503 group.add_option("--xonxoff",
504 dest = "xonxoff",
646 xonxoff variable
[all...]

Completed in 88 milliseconds