Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/
H A Dsys.rs62 pub(crate) fn pts(&self, size: usize) -> io::Result<PtsInner> { in pts() argument
91 Ok(PtsInner(file.into())) in pts()
172 pub(crate) struct PtsInner(OwnedFd); struct
174 impl PtsInner { impl
189 impl From<PtsInner> for OwnedFd {
190 fn from(value: PtsInner) -> Self { in from()
195 impl AsFd for PtsInner { implementation
201 impl AsRawFd for PtsInner { implementation
H A Dpty.rs208 pub struct Pts(super::sys::PtsInner);
211 fn new(pts_inner: super::sys::PtsInner) -> Self { in new()