Lines Matching refs:tty
1013 tty = kern.GetValueFromAddress(cmd_args[0], 'struct tty *')
1015 …input to raw queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_rawq.c_cs), tty.t_rawq.c_c…
1016 …input to canonical queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_canq.c_cs), tty.t_canq.c_c…
1017 …output data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_c…
1046 tty_state = unsigned(tty.t_state)
1057 print("Flags: 0x{0:0>8x}".format(unsigned(tty.t_flags)))
1058 print("Foreground Process Group: 0x{0:0>16x}".format(unsigned(tty.t_pgrp)))
1059 print("Enclosing session: 0x{0:0>16x}".format(unsigned(tty.t_session)))
1061 print("\tInput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_iflag)))
1062 print("\tOutput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_oflag)))
1063 print("\tControl Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_cflag)))
1064 print("\tLocal Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_lflag)))
1065 print("\tInput Speed: {0: <8d}".format(tty.t_termios.c_ispeed))
1066 print("\tOutput Speed: {0: <8d}".format(tty.t_termios.c_ospeed))
1067 print("High Watermark: {0: <d} bytes".format(tty.t_hiwat))
1068 print("Low Watermark : {0: <d} bytes".format(tty.t_lowat))