Home
last modified time | relevance | path

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

/DragonOS/kernel/src/net/socket/
H A Dmod.rs285 pub struct SocketInode(SpinLock<Box<dyn Socket>>, AtomicUsize); struct
287 impl SocketInode { implementation
328 impl Drop for SocketInode { implementation
336 impl IndexNode for SocketInode { implementation
/DragonOS/kernel/src/process/
H A Dmod.rs906 pub fn get_socket(&self, fd: i32) -> Option<Arc<SocketInode>> { in get_socket()