Lines Matching refs:tty
1020 tty = kern.GetValueFromAddress(cmd_args[0], 'struct tty *')
1022 …input to raw queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_rawq.c_cs), tty.t_rawq.c_c…
1023 …input to canonical queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_canq.c_cs), tty.t_canq.c_c…
1024 …output data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_c…
1053 tty_state = unsigned(tty.t_state)
1064 print("Flags: 0x{0:0>8x}".format(unsigned(tty.t_flags)))
1065 print("Foreground Process Group: 0x{0:0>16x}".format(unsigned(tty.t_pgrp)))
1066 print("Enclosing session: 0x{0:0>16x}".format(unsigned(tty.t_session)))
1068 print("\tInput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_iflag)))
1069 print("\tOutput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_oflag)))
1070 print("\tControl Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_cflag)))
1071 print("\tLocal Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_lflag)))
1072 print("\tInput Speed: {0: <8d}".format(tty.t_termios.c_ispeed))
1073 print("\tOutput Speed: {0: <8d}".format(tty.t_termios.c_ospeed))
1074 print("High Watermark: {0: <d} bytes".format(tty.t_hiwat))
1075 print("Low Watermark : {0: <d} bytes".format(tty.t_lowat))