| /external/rust/crates/nix/test/sys/ | 
| D | test_termios.rs | 53     let mut termios = {  in test_output_flags()  localVariable 57         let termios = tcgetattr(pty.slave).expect("tcgetattr failed");  in test_output_flags()  localVariable 99     let mut termios = {  in test_local_flags()  localVariable 103         let termios = tcgetattr(pty.slave).unwrap();  in test_local_flags()  localVariable
  | 
| D | test_ioctl.rs | 218         let mut termios = unsafe { mem::zeroed() };  in test_ioctl_read_bad()  localVariable 235         let termios: termios = unsafe { mem::zeroed() };  in test_ioctl_write_ptr_bad()  localVariable 363         let mut termios = unsafe { mem::zeroed() };  in test_ioctl_read()  localVariable 372         let termios: termios = unsafe { mem::zeroed() };  in test_ioctl_write_ptr()  localVariable
  | 
| /external/rust/crates/nix/src/sys/ | 
| D | termios.rs | 261     pub(crate) fn get_libc_termios(&self) -> Ref<libc::termios> {  in get_libc_termios() 263             let mut termios = self.inner.borrow_mut();  in get_libc_termios()  localVariable 287     pub(crate) unsafe fn get_libc_termios_mut(&mut self) -> *mut libc::termios {  in get_libc_termios_mut() 289             let mut termios = self.inner.borrow_mut();  in get_libc_termios_mut()  localVariable 309         let termios = *self.inner.borrow_mut();  in update_wrapper()  localVariable 345 impl From<Termios> for libc::termios {  implementation 1147     let mut termios = mem::MaybeUninit::uninit();  in tcgetattr()  localVariable
  | 
| /external/rust/crates/libc/src/unix/solarish/ | 
| D | compat.rs | 10 pub unsafe fn cfmakeraw(termios: *mut ::termios) {  in cfmakeraw()  argument 35 pub unsafe fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int {  in cfsetspeed()  argument 59     termp: *const termios,  in openpty() 126     termp: *const termios,  in forkpty()
  | 
| /external/musl/arch/mipsn32/bits/ | 
| D | termios.h | 1 struct termios {  struct 2 	tcflag_t c_iflag; 3 	tcflag_t c_oflag; 4 	tcflag_t c_cflag; 5 	tcflag_t c_lflag; 6 	cc_t c_line; 7 	cc_t c_cc[NCCS]; 8 	speed_t __c_ispeed; 9 	speed_t __c_ospeed;
  | 
| /external/musl/arch/generic/bits/ | 
| D | termios.h | 1 struct termios {  struct 2 	tcflag_t c_iflag; 3 	tcflag_t c_oflag; 4 	tcflag_t c_cflag; 5 	tcflag_t c_lflag; 6 	cc_t c_line; 7 	cc_t c_cc[NCCS]; 8 	speed_t __c_ispeed; 9 	speed_t __c_ospeed;
  | 
| /external/musl/arch/mips/bits/ | 
| D | termios.h | 1 struct termios {  struct 2 	tcflag_t c_iflag; 3 	tcflag_t c_oflag; 4 	tcflag_t c_cflag; 5 	tcflag_t c_lflag; 6 	cc_t c_line; 7 	cc_t c_cc[NCCS]; 8 	speed_t __c_ispeed; 9 	speed_t __c_ospeed;
  | 
| /external/musl/arch/powerpc64/bits/ | 
| D | termios.h | 3 struct termios {  struct 4 	tcflag_t c_iflag; 5 	tcflag_t c_oflag; 6 	tcflag_t c_cflag; 7 	tcflag_t c_lflag; 8 	cc_t c_cc[NCCS]; 9 	cc_t c_line; 10 	speed_t __c_ispeed; 11 	speed_t __c_ospeed;
  | 
| /external/musl/arch/powerpc/bits/ | 
| D | termios.h | 3 struct termios {  struct 4 	tcflag_t c_iflag; 5 	tcflag_t c_oflag; 6 	tcflag_t c_cflag; 7 	tcflag_t c_lflag; 8 	cc_t c_cc[NCCS]; 9 	cc_t c_line; 10 	speed_t __c_ispeed; 11 	speed_t __c_ospeed;
  | 
| /external/musl/arch/mips64/bits/ | 
| D | termios.h | 1 struct termios {  struct 2 	tcflag_t c_iflag; 3 	tcflag_t c_oflag; 4 	tcflag_t c_cflag; 5 	tcflag_t c_lflag; 6 	cc_t c_line; 7 	cc_t c_cc[NCCS]; 8 	speed_t __c_ispeed; 9 	speed_t __c_ospeed;
  | 
| /external/kernel-headers/original/uapi/asm-generic/ | 
| D | termbits.h | 10 struct termios {  struct 19 struct termios2 {  argument
  | 
| /external/rust/crates/nix/test/ | 
| D | test_pty.rs | 160     let mut termios = tcgetattr(fd).unwrap();  in make_raw()  localVariable 240     let mut termios = {  in test_openpty_with_termios()  localVariable 244         let termios = tcgetattr(pty.slave).unwrap();  in test_openpty_with_termios()  localVariable
  | 
| /external/libxkbcommon/tools/ | 
| D | tools-common.c | 186     struct termios termios;  in tools_disable_stdin_echo()  local 197     struct termios termios;  in tools_enable_stdin_echo()  local
  | 
| /external/ltp/testcases/kernel/pty/ | 
| D | ptem01.c | 57 	struct termios termios;  in test1()  local 383 	struct termios termios;  in test6()  local
  | 
| /external/rust/crates/anes/examples/ | 
| D | parser.rs | 87         let mut termios = std::mem::zeroed();  in get_termios()  localVariable
  | 
| /external/python/cpython3/Lib/test/ | 
| D | test_ioctl.py | 7 termios = import_module('termios')  variable
  | 
| D | test_getpass.py | 11     termios = None  variable
  | 
| /external/python/cpython2/Lib/test/ | 
| D | test_ioctl.py | 6 termios = import_module('termios')  variable
  | 
| /external/crosvm/base/src/sys/unix/ | 
| D | terminal.rs | 34     let mut termios: termios = unsafe { zeroed() };  in modify_mode()  localVariable
  | 
| /external/python/absl-py/absl/flags/ | 
| D | _helpers.py | 31   termios = None  variable
  | 
| /external/openthread/examples/platforms/simulation/ | 
| D | uart.c | 77     struct termios termios;  in otPlatUartEnable()  local
  | 
| /external/e2fsprogs/e2fsck/ | 
| D | util.c | 202 	struct termios	termios, tmp;  in ask_yn()  local
  | 
| /external/rust/crates/libc/src/unix/linux_like/linux/uclibc/ | 
| D | mod.rs | 330         termp: *mut termios,  in openpty() 336         termp: *mut termios,  in forkpty()
  | 
| /external/rust/crates/libc/src/unix/ | 
| D | mod.rs | 1372     pub fn cfsetispeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int;  in cfsetispeed()  argument 1373     pub fn cfsetospeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int;  in cfsetospeed()  argument
  | 
| /external/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/ | 
| D | mod.rs | 1807         termp: *const ::termios,  in openpty() 1813         termp: *const ::termios,  in forkpty()
  |