Home
last modified time | relevance | path

Searched refs:chdir (Results 1 – 6 of 6) sorted by relevance

/DragonOS-0.1.8/user/libs/libc/src/include/export/
Dunistd.h86 int64_t chdir(char *dest_path);
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Dunistd.md47 ``int64_t chdir(char *dest_path)``
/DragonOS-0.1.8/user/libs/libc/src/
Dunistd.c131 int64_t chdir(char *dest_path) in chdir() function
/DragonOS-0.1.8/user/apps/shell/
Dcmd.c177 int ec = chdir(argv[1]); in shell_cmd_cd()
224 int x = chdir(new_path); in shell_cmd_cd()
/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dsyscall.rs274 pub fn chdir(dest_path: &str) -> Result<usize, SystemError> { in chdir() method
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs538 Self::chdir(r.unwrap()) in handle()