Home
last modified time | relevance | path

Searched refs:ENOTDIR (Results 1 – 15 of 15) sorted by relevance

/DragonOS-0.1.7/kernel/src/filesystem/ramfs/
Dmod.rs241 return Err(SystemError::ENOTDIR); in create_with_data()
291 return Err(SystemError::ENOTDIR); in link()
317 return Err(SystemError::ENOTDIR); in unlink()
340 return Err(SystemError::ENOTDIR); in rmdir()
345 return Err(SystemError::ENOTDIR); in rmdir()
377 return Err(SystemError::ENOTDIR); in find()
398 return Err(SystemError::ENOTDIR); in get_entry_name()
430 return Err(SystemError::ENOTDIR); in list()
/DragonOS-0.1.7/kernel/src/common/
Derrno.h32 #define ENOTDIR 20 /* 不是目录 Not a directory. */ macro
/DragonOS-0.1.7/kernel/src/filesystem/vfs/
Dcore.rs238 return Err(SystemError::ENOTDIR); in do_open()
362 return Err(SystemError::ENOTDIR); in do_remove_dir()
367 return Err(SystemError::ENOTDIR); in do_remove_dir()
402 return Err(SystemError::ENOTDIR); in do_unlink_at()
Dmod.rs375 return Err(SystemError::ENOTDIR); in lookup_follow_symlink()
392 return Err(SystemError::ENOTDIR); in lookup_follow_symlink()
426 ::core::str::from_utf8(&content[..len]).map_err(|_| SystemError::ENOTDIR)?, in lookup_follow_symlink()
Dmount.rs326 return Err(SystemError::ENOTDIR); in mount()
Dsyscall.rs216 return SystemError::ENOTDIR.to_posix_errno() as u64; in sys_chdir()
/DragonOS-0.1.7/kernel/src/filesystem/sysfs/
Dmod.rs209 return Err(SystemError::ENOTDIR); in get_entry_name()
242 return Err(SystemError::ENOTDIR); in find()
270 return Err(SystemError::ENOTDIR); in list()
292 return Err(SystemError::ENOTDIR); in do_create_with_data()
/DragonOS-0.1.7/user/libs/libc/src/include/export/
Derrno.h38 #define ENOTDIR 20 /* 不是目录 Not a directory. */ macro
/DragonOS-0.1.7/kernel/src/filesystem/procfs/
Dmod.rs479 return Err(SystemError::ENOTDIR); in create_with_data()
534 return Err(SystemError::ENOTDIR); in link()
560 return Err(SystemError::ENOTDIR); in unlink()
589 return Err(SystemError::ENOTDIR); in find()
610 return Err(SystemError::ENOTDIR); in get_entry_name()
642 return Err(SystemError::ENOTDIR); in list()
/DragonOS-0.1.7/kernel/src/syscall/
Dmod.rs48 ENOTDIR = 20, enumerator
/DragonOS-0.1.7/kernel/src/filesystem/devfs/
Dmod.rs297 return Err(SystemError::ENOTDIR); in do_create_with_data()
372 return Err(SystemError::ENOTDIR); in find()
396 return Err(SystemError::ENOTDIR); in get_entry_name()
432 return Err(SystemError::ENOTDIR); in list()
/DragonOS-0.1.7/kernel/src/filesystem/fat/
Dfs.rs154 return Err(SystemError::ENOTDIR); in find()
1430 return Err(SystemError::ENOTDIR); in create()
1469 return Err(SystemError::ENOTDIR); in list()
1531 return Err(SystemError::ENOTDIR); in unlink()
1558 return Err(SystemError::ENOTDIR); in rmdir()
1588 return Err(SystemError::ENOTDIR); in get_entry_name()
Dentry.rs516 return Err(SystemError::ENOTDIR); in find_entry()
553 if err_val == (SystemError::EISDIR) || err_val == (SystemError::ENOTDIR) { in create_file()
593 if err_val == (SystemError::EISDIR) || err_val == (SystemError::ENOTDIR) { in create_dir()
1782 return Err(SystemError::ENOTDIR); in to_dir()
/DragonOS-0.1.7/docs/userland/libc/apis/api-list/
Derrno.md131 #define ENOTDIR 57 /* 不是目录 Not a directory.*/
/DragonOS-0.1.7/kernel/src/net/
Dsocket.rs1062 return Err(SystemError::ENOTDIR); in list()