Home
last modified time | relevance | path

Searched refs:PtyMaster (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/nix/src/
Dpty.rs50 pub struct PtyMaster(RawFd); struct
52 impl AsRawFd for PtyMaster { implementation
58 impl IntoRawFd for PtyMaster { implementation
66 impl Drop for PtyMaster { implementation
82 impl io::Read for PtyMaster { implementation
88 impl io::Write for PtyMaster { implementation
97 impl io::Read for &PtyMaster { implementation
103 impl io::Write for &PtyMaster { implementation
118 pub fn grantpt(fd: &PtyMaster) -> Result<()> { in grantpt()
160 pub fn posix_openpt(flags: fcntl::OFlag) -> Result<PtyMaster> { in posix_openpt() argument
[all …]
/third_party/rust/crates/nix/test/
Dtest_pty.rs100 fn open_ptty_pair() -> (PtyMaster, File) { in open_ptty_pair()
/third_party/rust/crates/nix/
DCHANGELOG.md219 - Implemented `Read` and `Write` for `&PtyMaster`
560 - `Dir`, `SignalFd`, and `PtyMaster` are no longer `Clone`.