Home
last modified time | relevance | path

Searched refs:FcntlCommand (Results 1 – 3 of 3) sorted by relevance

/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dfcntl.rs9 pub enum FcntlCommand { enum
Dsyscall.rs15 fcntl::{FcntlCommand, FD_CLOEXEC},
459 pub fn fcntl(fd: i32, cmd: FcntlCommand, arg: i32) -> Result<usize, SystemError> { in fcntl() argument
461 FcntlCommand::DupFd => { in fcntl()
475 FcntlCommand::GetFd => { in fcntl()
490 FcntlCommand::SetFd => { in fcntl()
509 FcntlCommand::GetFlags => { in fcntl()
521 FcntlCommand::SetFlags => { in fcntl()
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs11 fcntl::FcntlCommand,
972 let cmd: Option<FcntlCommand> = in handle()
973 <FcntlCommand as FromPrimitive>::from_u32(args[1] as u32); in handle()