Lines Matching refs:tty
946 tty = kern.GetValueFromAddress(cmd_args[0], 'struct tty *')
948 …input to raw queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_rawq.c_cs), tty.t_rawq.c_c…
949 …input to canonical queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_canq.c_cs), tty.t_canq.c_c…
950 …output data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_c…
979 tty_state = unsigned(tty.t_state)
990 print("Flags: 0x{0:0>8x}".format(unsigned(tty.t_flags)))
991 print("Foreground Process Group: 0x{0:0>16x}".format(unsigned(tty.t_pgrp)))
992 print("Enclosing session: 0x{0:0>16x}".format(unsigned(tty.t_session)))
994 print("\tInput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_iflag)))
995 print("\tOutput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_oflag)))
996 print("\tControl Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_cflag)))
997 print("\tLocal Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_lflag)))
998 print("\tInput Speed: {0: <8d}".format(tty.t_termios.c_ispeed))
999 print("\tOutput Speed: {0: <8d}".format(tty.t_termios.c_ospeed))
1000 print("High Watermark: {0: <d} bytes".format(tty.t_hiwat))
1001 print("Low Watermark : {0: <d} bytes".format(tty.t_lowat))