Home
last modified time | relevance | path

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

/DragonOS/kernel/src/filesystem/vfs/
H A Dfile.rs637 pub struct FileDescriptorVec { struct
641 impl Default for FileDescriptorVec { implementation
646 impl FileDescriptorVec { implementation
661 pub fn clone(&self) -> FileDescriptorVec { in clone()
H A Dsyscall.rs1080 fd_table_guard: &mut RwLockWriteGuard<'_, FileDescriptorVec>, in do_dup2() argument
1089 fd_table_guard: &mut RwLockWriteGuard<'_, FileDescriptorVec>, in do_dup3() argument
/DragonOS/kernel/src/process/
H A Dmod.rs888 pub fn fd_table(&self) -> Arc<RwLock<FileDescriptorVec>> { in fd_table()
1136 pub fn fd_table(&self) -> Option<Arc<RwLock<FileDescriptorVec>>> { in fd_table()
1140 pub fn set_fd_table(&mut self, fd_table: Option<Arc<RwLock<FileDescriptorVec>>>) { in set_fd_table()