Home
last modified time | relevance | path

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

/external/rust/android-crates-io/crates/nix/src/
Dpty.rs53 pub struct PtyMaster(OwnedFd); struct
55 impl AsRawFd for PtyMaster { implementation
61 impl AsFd for PtyMaster { implementation
67 impl IntoRawFd for PtyMaster { implementation
74 impl io::Read for PtyMaster { implementation
80 impl io::Write for PtyMaster { implementation
89 impl io::Read for &PtyMaster { implementation
95 impl io::Write for &PtyMaster { implementation
152 pub fn posix_openpt(flags: fcntl::OFlag) -> Result<PtyMaster> { in posix_openpt()