Home
last modified time | relevance | path

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

/DragonOS-0.1.9/kernel/src/filesystem/ramfs/
Dmod.rs263 return Err(SystemError::ENOTDIR); in create_with_data()
314 return Err(SystemError::ENOTDIR); in link()
340 return Err(SystemError::ENOTDIR); in unlink()
363 return Err(SystemError::ENOTDIR); in rmdir()
368 return Err(SystemError::ENOTDIR); in rmdir()
400 return Err(SystemError::ENOTDIR); in find()
421 return Err(SystemError::ENOTDIR); in get_entry_name()
464 return Err(SystemError::ENOTDIR); in list()
483 return Err(SystemError::ENOTDIR); in mknod()
/DragonOS-0.1.9/kernel/src/filesystem/vfs/
Dcore.rs235 return Err(SystemError::ENOTDIR); in do_remove_dir()
241 return Err(SystemError::ENOTDIR); in do_remove_dir()
280 return Err(SystemError::ENOTDIR); in do_unlink_at()
Dutils.rs59 return Err(SystemError::ENOTDIR); in user_path_at()
Dmod.rs434 return Err(SystemError::ENOTDIR); in lookup_follow_symlink()
451 return Err(SystemError::ENOTDIR); in lookup_follow_symlink()
485 ::core::str::from_utf8(&content[..len]).map_err(|_| SystemError::ENOTDIR)?, in lookup_follow_symlink()
Dopen.rs131 return Err(SystemError::ENOTDIR); in do_sys_openat2()
Dmount.rs340 return Err(SystemError::ENOTDIR); in mount()
Dsyscall.rs475 return Err(SystemError::ENOTDIR); in chdir()
/DragonOS-0.1.9/kernel/src/filesystem/kernfs/
Dmod.rs213 return Err(SystemError::ENOTDIR); in find()
242 return Err(SystemError::ENOTDIR); in get_entry_name()
287 return Err(SystemError::ENOTDIR); in list()
440 return Err(SystemError::ENOTDIR); in add_dir()
472 return Err(SystemError::ENOTDIR); in add_file()
548 return Err(SystemError::ENOTDIR); in remove()
/DragonOS-0.1.9/kernel/src/common/
Derrno.h32 #define ENOTDIR 20 /* 不是目录 Not a directory. */ macro
/DragonOS-0.1.9/kernel/src/filesystem/procfs/
Dmod.rs556 return Err(SystemError::ENOTDIR); in create_with_data()
611 return Err(SystemError::ENOTDIR); in link()
637 return Err(SystemError::ENOTDIR); in unlink()
666 return Err(SystemError::ENOTDIR); in find()
687 return Err(SystemError::ENOTDIR); in get_entry_name()
730 return Err(SystemError::ENOTDIR); in list()
/DragonOS-0.1.9/kernel/src/filesystem/devfs/
Dmod.rs326 return Err(SystemError::ENOTDIR); in do_create_with_data()
401 return Err(SystemError::ENOTDIR); in find()
425 return Err(SystemError::ENOTDIR); in get_entry_name()
476 return Err(SystemError::ENOTDIR); in list()
/DragonOS-0.1.9/kernel/crates/system_error/src/
Dlib.rs52 ENOTDIR = 20, enumerator
/DragonOS-0.1.9/kernel/src/filesystem/fat/
Dfs.rs162 return Err(SystemError::ENOTDIR); in find()
1432 return Err(SystemError::ENOTDIR); in create()
1520 return Err(SystemError::ENOTDIR); in list()
1590 return Err(SystemError::ENOTDIR); in unlink()
1617 return Err(SystemError::ENOTDIR); in rmdir()
1647 return Err(SystemError::ENOTDIR); in get_entry_name()
1693 return Err(SystemError::ENOTDIR); in mknod()
Dentry.rs523 return Err(SystemError::ENOTDIR); in find_entry()
560 if err_val == (SystemError::EISDIR) || err_val == (SystemError::ENOTDIR) { in create_file()
600 if err_val == (SystemError::EISDIR) || err_val == (SystemError::ENOTDIR) { in create_dir()
1790 return Err(SystemError::ENOTDIR); in to_dir()
/DragonOS-0.1.9/kernel/src/net/socket/
Dmod.rs369 return Err(SystemError::ENOTDIR); in list()