Lines Matching refs:tty
940 tty = kern.GetValueFromAddress(cmd_args[0], 'struct tty *')
942 …input to raw queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_rawq.c_cs), tty.t_rawq.c_c…
943 …input to canonical queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_canq.c_cs), tty.t_canq.c_c…
944 …output data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_c…
973 tty_state = unsigned(tty.t_state)
984 print("Flags: 0x{0:0>8x}".format(unsigned(tty.t_flags)))
985 print("Foreground Process Group: 0x{0:0>16x}".format(unsigned(tty.t_pgrp)))
986 print("Enclosing session: 0x{0:0>16x}".format(unsigned(tty.t_session)))
988 print("\tInput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_iflag)))
989 print("\tOutput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_oflag)))
990 print("\tControl Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_cflag)))
991 print("\tLocal Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_lflag)))
992 print("\tInput Speed: {0: <8d}".format(tty.t_termios.c_ispeed))
993 print("\tOutput Speed: {0: <8d}".format(tty.t_termios.c_ospeed))
994 print("High Watermark: {0: <d} bytes".format(tty.t_hiwat))
995 print("Low Watermark : {0: <d} bytes".format(tty.t_lowat))