Home
last modified time | relevance | path

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

/DragonOS-0.1.8/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.8/kernel/src/filesystem/vfs/
Dcore.rs253 return Err(SystemError::ENOTDIR); in do_remove_dir()
258 return Err(SystemError::ENOTDIR); in do_remove_dir()
293 return Err(SystemError::ENOTDIR); in do_unlink_at()
Dmod.rs379 return Err(SystemError::ENOTDIR); in lookup_follow_symlink()
396 return Err(SystemError::ENOTDIR); in lookup_follow_symlink()
430 ::core::str::from_utf8(&content[..len]).map_err(|_| SystemError::ENOTDIR)?, in lookup_follow_symlink()
Dsyscall.rs164 return Err(SystemError::ENOTDIR); in open()
294 return Err(SystemError::ENOTDIR); in chdir()
Dmount.rs326 return Err(SystemError::ENOTDIR); in mount()
/DragonOS-0.1.8/kernel/src/common/
Derrno.h32 #define ENOTDIR 20 /* 不是目录 Not a directory. */ macro
/DragonOS-0.1.8/kernel/src/filesystem/sysfs/
Dmod.rs211 return Err(SystemError::ENOTDIR); in get_entry_name()
244 return Err(SystemError::ENOTDIR); in find()
272 return Err(SystemError::ENOTDIR); in list()
294 return Err(SystemError::ENOTDIR); in do_create_with_data()
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Derrno.h38 #define ENOTDIR 20 /* 不是目录 Not a directory. */ macro
/DragonOS-0.1.8/kernel/src/filesystem/procfs/
Dmod.rs482 return Err(SystemError::ENOTDIR); in create_with_data()
537 return Err(SystemError::ENOTDIR); in link()
563 return Err(SystemError::ENOTDIR); in unlink()
592 return Err(SystemError::ENOTDIR); in find()
613 return Err(SystemError::ENOTDIR); in get_entry_name()
645 return Err(SystemError::ENOTDIR); in list()
/DragonOS-0.1.8/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.8/kernel/src/filesystem/fat/
Dfs.rs154 return Err(SystemError::ENOTDIR); in find()
1434 return Err(SystemError::ENOTDIR); in create()
1511 return Err(SystemError::ENOTDIR); in list()
1573 return Err(SystemError::ENOTDIR); in unlink()
1600 return Err(SystemError::ENOTDIR); in rmdir()
1630 return Err(SystemError::ENOTDIR); in get_entry_name()
Dentry.rs525 return Err(SystemError::ENOTDIR); in find_entry()
562 if err_val == (SystemError::EISDIR) || err_val == (SystemError::ENOTDIR) { in create_file()
602 if err_val == (SystemError::EISDIR) || err_val == (SystemError::ENOTDIR) { in create_dir()
1795 return Err(SystemError::ENOTDIR); in to_dir()
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Derrno.md131 #define ENOTDIR 57 /* 不是目录 Not a directory.*/
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs74 ENOTDIR = 20, enumerator
/DragonOS-0.1.8/kernel/src/net/
Dsocket.rs1200 return Err(SystemError::ENOTDIR); in list()