Home | History | Annotate | Download | only in tools

Lines Matching defs:echo

49 ---    %(rts)-7s RTS          %(echo)-7s local echo
70 'echo': key_description('\x05'),
128 new[3] = new[3] & ~termios.ICANON & ~termios.ECHO & ~termios.ISIG
169 def __init__(self, port, baudrate, parity, rtscts, xonxoff, echo=False, convert_outgoing=CONVERT_CRLF, repr_mode=0):
176 self.echo = echo
298 if self.echo:
336 elif c == '\x05': # CTRL+E -> toggle local echo
337 self.echo = not self.echo
338 sys.stderr.write('--- local echo %s ---\n' % (self.echo and 'active' or 'inactive'))
453 if self.echo:
454 sys.stdout.write(c) # local echo is a real newline in any case
458 if self.echo:
530 group.add_option("-e", "--echo",
531 dest = "echo",
533 help = "enable local echo (default off)",
647 echo=options.echo,