/third_party/rust/crates/nix/test/ |
D | test_pty.rs | 19 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()
|
D | test_ptymaster_drop.rs | 16 let m = posix_openpt(OFlag::O_RDWR).unwrap(); in test_double_close()
|
D | test_unistd.rs | 13 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/ |
D | pty.c | 111 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/ |
D | pty.c | 9 int posix_openpt(int flags) in posix_openpt() function
|
/third_party/musl/src/misc/ |
D | pty.c | 9 int posix_openpt(int flags) in posix_openpt() function
|
/third_party/rust/crates/nix/src/ |
D | pty.rs | 160 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/ |
D | stdlib.h | 122 int posix_openpt (int);
|
/third_party/musl/porting/liteos_m/user/include/ |
D | stdlib.h | 119 int posix_openpt (int);
|
/third_party/musl/libc-test/src/api/ |
D | stdlib.c | 101 {int(*p)(int) = posix_openpt;} in g()
|
/third_party/musl/porting/linux/user/include/ |
D | stdlib.h | 125 int posix_openpt (int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | stdlib.h | 120 int posix_openpt (int);
|
/third_party/musl/include/ |
D | stdlib.h | 125 int posix_openpt (int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | stdlib.h | 120 int posix_openpt (int);
|
/third_party/rust/crates/libc/src/unix/solarish/ |
D | compat.rs | 64 let fdm = ::posix_openpt(O_RDWR | O_NOCTTY); in openpty()
|
/third_party/musl/docs/ |
D | status.md | 190 - posix_openpt 函数打开一个伪终端(pty)设备,并返回其文件描述符。
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | unix.txt | 667 posix_openpt
|
D | android.txt | 3224 posix_openpt
|
/third_party/musl/ |
D | libc.map.txt | 1297 posix_openpt;
|
D | WHATSNEW | 2194 - posix_openpt with no ptys available produced wrong errno
|
/third_party/rust/crates/libc/src/unix/ |
D | mod.rs | 1400 pub fn posix_openpt(flags: ::c_int) -> ::c_int; in posix_openpt() function
|
/third_party/rust/crates/libc/src/fuchsia/ |
D | mod.rs | 3856 pub fn posix_openpt(flags: ::c_int) -> ::c_int; in posix_openpt() function
|
/third_party/rust/crates/nix/ |
D | CHANGELOG.md | 1273 - Added `nix::pty::{grantpt, posix_openpt, ptsname/ptsname_r, unlockpt}`
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
D | stylo.hpp | 6761 extern int posix_openpt (int __oflag) ;
|
/third_party/NuttX/ |
D | ReleaseNotes | 30651 * [#5398](https://github.com/apache/nuttx/pull/5398) libc: Implement posix_openpt
|