Searched refs:newdfd (Results 1 – 3 of 3) sorted by relevance
/DragonOS/kernel/src/filesystem/vfs/ |
H A D | core.rs | 255 pub fn do_symlinkat(from: *const u8, newdfd: i32, to: *const u8) -> Result<usize, SystemError> { in do_symlinkat() 274 let (new_begin_inode, new_remain_path) = user_path_at(&pcb, newdfd, to)?; in do_symlinkat()
|
H A D | syscall.rs | 993 newdfd: i32, in symlinkat() 996 return do_symlinkat(oldname, newdfd, newname); in symlinkat()
|
/DragonOS/kernel/src/syscall/ |
H A D | mod.rs | 372 let newdfd = args[1] as i32; in handle() localVariable 374 Self::symlinkat(oldname, newdfd, newname) in handle()
|