Home
last modified time | relevance | path

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

/developtools/hdc/hdc_rust/src/daemon_lib/
Dshell.rs82 pub struct PtyTask { struct
83 pub handle: ylong_runtime::task::JoinHandle<()>,
84 pub tx: mpsc::BoundedSender<Vec<u8>>,
85 pub session_id: u32,
86 pub channel_id: u32,
87 pub cmd: Option<String>,
313 impl PtyTask { impl
340 impl Drop for PtyTask { implementation
398 pub async fn get(session_id: u32, channel_id: u32) -> Option<Arc<PtyTask>> { in get()
407 pub async fn put(session_id: u32, channel_id: u32, pty_task: PtyTask) { in put()