Home
last modified time | relevance | path

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

/DragonOS-0.1.5/kernel/src/filesystem/vfs/
Dsyscall.rs181 let dest_path: &CStr = unsafe { CStr::from_ptr(ptr) }; in sys_chdir() localVariable
182 let dest_path: Result<&str, core::str::Utf8Error> = dest_path.to_str(); in sys_chdir() localVariable
188 let dest_path: &str = dest_path.unwrap(); in sys_chdir() localVariable
/DragonOS-0.1.5/user/libs/libc/src/
Dunistd.c119 int64_t chdir(char *dest_path) in chdir()