Lines Matching refs:tty
1004 tty = kern.GetValueFromAddress(cmd_args[0], 'struct tty *')
1006 …input to raw queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_rawq.c_cs), tty.t_rawq.c_c…
1007 …input to canonical queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_canq.c_cs), tty.t_canq.c_c…
1008 …output data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_c…
1037 tty_state = unsigned(tty.t_state)
1048 print("Flags: 0x{0:0>8x}".format(unsigned(tty.t_flags)))
1049 print("Foreground Process Group: 0x{0:0>16x}".format(unsigned(tty.t_pgrp)))
1050 print("Enclosing session: 0x{0:0>16x}".format(unsigned(tty.t_session)))
1052 print("\tInput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_iflag)))
1053 print("\tOutput Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_oflag)))
1054 print("\tControl Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_cflag)))
1055 print("\tLocal Flags: 0x{0:0>8x}".format(unsigned(tty.t_termios.c_lflag)))
1056 print("\tInput Speed: {0: <8d}".format(tty.t_termios.c_ispeed))
1057 print("\tOutput Speed: {0: <8d}".format(tty.t_termios.c_ospeed))
1058 print("High Watermark: {0: <d} bytes".format(tty.t_hiwat))
1059 print("Low Watermark : {0: <d} bytes".format(tty.t_lowat))