Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/tty/
H A Dtty_device.rs99 pub struct TtyDevice { struct
103 inner: RwLock<InnerTtyDevice>, argument
109 impl TtyDevice { argument
110 pub fn new(name: String, id_table: IdTable, tty_type: TtyType) -> Arc<TtyDevice> { in new()
131 impl IndexNode for TtyDevice { implementation
433 impl DeviceINode for TtyDevice { implementation
439 impl KObject for TtyDevice { implementation
499 impl Device for TtyDevice { implementation
565 impl CharDevice for TtyDevice { implementation
/DragonOS/kernel/src/filesystem/devpts/
H A Dmod.rs136 pub fn children_unchecked(&self) -> &BTreeMap<String, Arc<TtyDevice>> { in children_unchecked()
140 pub fn children_unchecked_mut(&mut self) -> &mut BTreeMap<String, Arc<TtyDevice>> { in children_unchecked_mut()