Home
last modified time | relevance | path

Searched defs:termios (Results 1 – 25 of 93) sorted by relevance

1234

/external/cronet/tot/third_party/llvm-libc/src/include/llvm-libc-types/
Dstruct_termios.h16 struct termios { struct
24 // NCCS is defined in llvm-libc-macros/termios-macros.h. argument
25 cc_t c_cc[NCCS]; // Control characters
27 speed_t c_ispeed; // Input speed
28 speed_t c_ospeed; // output speed
/external/llvm-libc/include/llvm-libc-types/
Dstruct_termios.h16 struct termios { struct
24 // NCCS is defined in llvm-libc-macros/termios-macros.h. argument
25 cc_t c_cc[NCCS]; // Control characters
27 speed_t c_ispeed; // Input speed
28 speed_t c_ospeed; // output speed
/external/cronet/stable/third_party/llvm-libc/src/include/llvm-libc-types/
Dstruct_termios.h16 struct termios { struct
24 // NCCS is defined in llvm-libc-macros/termios-macros.h. argument
25 cc_t c_cc[NCCS]; // Control characters
27 speed_t c_ispeed; // Input speed
28 speed_t c_ospeed; // output speed
/external/rust/android-crates-io/crates/serialport/src/posix/
Dtty.rs114 let mut termios = MaybeUninit::uninit(); in open() localVariable
116 let mut termios = unsafe { termios.assume_init() }; in open() localVariable
154 let mut termios = termios::get_termios(fd.as_raw_fd())?; in open() localVariable
287 let mut termios = MaybeUninit::uninit(); in pair() localVariable
293 let mut termios = unsafe { termios.assume_init() }; in pair() localVariable
386 let mut termios = MaybeUninit::uninit(); in get_termios_speed() localVariable
389 let termios = unsafe { termios.assume_init() }; in get_termios_speed() localVariable
493 let termios = termios::get_termios(self.fd.as_raw_fd())?; in baud_rate() localVariable
534 let termios = termios::get_termios(self.fd.as_raw_fd())?; in baud_rate() localVariable
578 let termios = termios::get_termios(self.fd.as_raw_fd())?; in data_bits() localVariable
[all …]
Dtermios.rs52 let mut termios = MaybeUninit::uninit(); in get_termios() localVariable
55 let mut termios = unsafe { termios.assume_init() }; in get_termios() localVariable
78 let mut termios = MaybeUninit::uninit(); in get_termios() localVariable
100 pub(crate) fn set_termios(fd: RawFd, termios: &libc::termios, baud_rate: u32) -> Result<()> { in set_termios() argument
/external/rust/android-crates-io/crates/nix/src/sys/
Dtermios.rs181 pub(crate) fn get_libc_termios(&self) -> Ref<libc::termios> { in get_libc_termios()
183 let mut termios = self.inner.borrow_mut(); in get_libc_termios() localVariable
203 pub(crate) unsafe fn get_libc_termios_mut(&mut self) -> *mut libc::termios { in get_libc_termios_mut()
205 let mut termios = self.inner.borrow_mut(); in get_libc_termios_mut() localVariable
221 let termios = *self.inner.borrow_mut(); in update_wrapper() localVariable
249 impl From<Termios> for libc::termios { implementation
841 let mut termios = mem::MaybeUninit::uninit(); in tcgetattr() localVariable
/external/rust/android-crates-io/crates/libc/src/unix/solarish/
Dcompat.rs10 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/cronet/stable/third_party/rust/chromium_crates_io/vendor/libc-0.2.164/src/unix/solarish/
Dcompat.rs10 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/cronet/tot/third_party/rust/chromium_crates_io/vendor/libc-0.2.164/src/unix/solarish/
Dcompat.rs10 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/generic/bits/
Dtermios.h1 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/
Dtermios.h1 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/trusty/musl/arch/mips64/bits/
Dtermios.h1 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/mips64/bits/
Dtermios.h1 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/
Dtermios.h3 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/trusty/musl/arch/mipsn32/bits/
Dtermios.h1 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/trusty/musl/arch/mips/bits/
Dtermios.h1 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/mipsn32/bits/
Dtermios.h1 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/trusty/musl/arch/powerpc/bits/
Dtermios.h3 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/trusty/musl/arch/powerpc64/bits/
Dtermios.h3 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/
Dtermios.h3 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/trusty/musl/arch/generic/bits/
Dtermios.h1 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/
Dtermbits.h10 struct termios { struct
19 struct termios2 { argument
/external/rust/android-crates-io/crates/nix/test/sys/
Dtest_termios.rs51 let mut termios = { in test_output_flags() localVariable
88 let mut termios = { in test_local_flags() localVariable
Dtest_ioctl.rs225 let mut termios = unsafe { mem::zeroed() }; in test_ioctl_read_bad() localVariable
242 let termios: termios = unsafe { mem::zeroed() }; in test_ioctl_write_ptr_bad() localVariable
370 let mut termios = unsafe { mem::zeroed() }; in test_ioctl_read() localVariable
379 let termios: termios = unsafe { mem::zeroed() }; in test_ioctl_write_ptr() localVariable
/external/libxkbcommon/tools/
Dtools-common.c186 struct termios termios; in tools_disable_stdin_echo() local
197 struct termios termios; in tools_enable_stdin_echo() local

1234