Home
last modified time | relevance | path

Searched refs:PtyInner (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/
H A Dsys.rs26 pub(crate) struct PtyInner(OwnedFd); struct
28 impl PtyInner { impl
101 impl AsFd for PtyInner { implementation
107 impl AsRawFd for PtyInner { implementation
113 impl From<PtyInner> for OwnedFd {
114 fn from(value: PtyInner) -> Self { in from()
149 impl_read_write!(PtyInner);
150 impl_read_write!(&PtyInner);
152 impl Source for PtyInner { implementation
222 let pty = PtyInner::open().unwrap(); in ut_pty_pts_size_test()
[all …]
H A Dpty.rs27 pub struct Pty(AsyncSource<super::sys::PtyInner>);
40 let pty = super::sys::PtyInner::open()?; in new()