Home
last modified time | relevance | path

Searched refs:posix_openpt (Results 1 – 25 of 25) sorted by relevance

/third_party/rust/crates/nix/test/
Dtest_pty.rs19 let m = posix_openpt(OFlag::O_RDWR).unwrap(); in test_explicit_close()
35 let master_fd = posix_openpt(OFlag::O_RDWR).unwrap(); in test_ptsname_equivalence()
52 let master_fd = posix_openpt(OFlag::O_RDWR).unwrap(); in test_ptsname_copy()
69 let master_fd = posix_openpt(OFlag::O_RDWR).unwrap(); in test_ptsname_r_copy()
86 let master1_fd = posix_openpt(OFlag::O_RDWR).unwrap(); in test_ptsname_unique()
90 let master2_fd = posix_openpt(OFlag::O_RDWR).unwrap(); in test_ptsname_unique()
104 let master = posix_openpt(OFlag::O_RDWR).expect("posix_openpt failed"); in open_ptty_pair()
Dtest_ptymaster_drop.rs16 let m = posix_openpt(OFlag::O_RDWR).unwrap(); in test_double_close()
Dtest_unistd.rs13 use nix::pty::{grantpt, posix_openpt, ptsname, unlockpt};
1238 let fd = posix_openpt(OFlag::O_RDWR).expect("posix_openpt failed"); in test_ttyname()
/third_party/musl/libc-test/src/functionalext/supplement/misc/
Dpty.c111 int ret = posix_openpt(O_RDWR); in posix_openpt_0100()
124 int ret = posix_openpt(O_RDWR | O_NOCTTY); in posix_openpt_0200()
/third_party/musl/porting/liteos_a/user/src/misc/
Dpty.c9 int posix_openpt(int flags) in posix_openpt() function
/third_party/musl/src/misc/
Dpty.c9 int posix_openpt(int flags) in posix_openpt() function
/third_party/rust/crates/nix/src/
Dpty.rs160 pub fn posix_openpt(flags: fcntl::OFlag) -> Result<PtyMaster> { in posix_openpt() function
161 let fd = unsafe { libc::posix_openpt(flags.bits()) }; in posix_openpt()
/third_party/musl/porting/liteos_a/kernel/include/
Dstdlib.h122 int posix_openpt (int);
/third_party/musl/porting/liteos_m/user/include/
Dstdlib.h119 int posix_openpt (int);
/third_party/musl/libc-test/src/api/
Dstdlib.c101 {int(*p)(int) = posix_openpt;} in g()
/third_party/musl/porting/linux/user/include/
Dstdlib.h125 int posix_openpt (int);
/third_party/musl/porting/liteos_m/kernel/include/
Dstdlib.h120 int posix_openpt (int);
/third_party/musl/include/
Dstdlib.h125 int posix_openpt (int);
/third_party/musl/porting/uniproton/kernel/include/
Dstdlib.h120 int posix_openpt (int);
/third_party/rust/crates/libc/src/unix/solarish/
Dcompat.rs64 let fdm = ::posix_openpt(O_RDWR | O_NOCTTY); in openpty()
/third_party/musl/docs/
Dstatus.md190 - posix_openpt 函数打开一个伪终端(pty)设备,并返回其文件描述符。
/third_party/rust/crates/libc/libc-test/semver/
Dunix.txt667 posix_openpt
Dandroid.txt3224 posix_openpt
/third_party/musl/
Dlibc.map.txt1297 posix_openpt;
DWHATSNEW2194 - posix_openpt with no ptys available produced wrong errno
/third_party/rust/crates/libc/src/unix/
Dmod.rs1400 pub fn posix_openpt(flags: ::c_int) -> ::c_int; in posix_openpt() function
/third_party/rust/crates/libc/src/fuchsia/
Dmod.rs3856 pub fn posix_openpt(flags: ::c_int) -> ::c_int; in posix_openpt() function
/third_party/rust/crates/nix/
DCHANGELOG.md1273 - Added `nix::pty::{grantpt, posix_openpt, ptsname/ptsname_r, unlockpt}`
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp6761 extern int posix_openpt (int __oflag) ;
/third_party/NuttX/
DReleaseNotes30651 * [#5398](https://github.com/apache/nuttx/pull/5398) libc: Implement posix_openpt