Home
last modified time | relevance | path

Searched refs:EISDIR (Results 1 – 10 of 10) sorted by relevance

/DragonOS-0.1.8/kernel/src/common/
Derrno.h33 #define EISDIR 21 /* 是一个目录 Is a directory */ macro
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Derrno.h39 #define EISDIR 21 /* 是一个目录 Is a directory */ macro
/DragonOS-0.1.8/kernel/src/filesystem/ramfs/
Dmod.rs132 return Err(SystemError::EISDIR); in read_at()
165 return Err(SystemError::EISDIR); in write_at()
186 return Err(SystemError::EISDIR); in poll()
296 return Err(SystemError::EISDIR); in link()
/DragonOS-0.1.8/kernel/src/filesystem/procfs/
Dmod.rs380 return Err(SystemError::EISDIR); in read_at()
428 return Err(SystemError::EISDIR); in poll()
542 return Err(SystemError::EISDIR); in link()
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Derrno.md77 #define EISDIR 31 /* 是一个目录 Is a directory*/
/DragonOS-0.1.8/kernel/src/filesystem/sysfs/
Dmod.rs194 return Err(SystemError::EISDIR); in poll()
/DragonOS-0.1.8/kernel/src/filesystem/fat/
Dentry.rs522 return Err(SystemError::EISDIR); 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()
1781 return Err(SystemError::EISDIR); in to_file()
Dfs.rs1374 return Err(SystemError::EISDIR); in read_at()
1400 return Err(SystemError::EISDIR); in write_at()
1415 return Err(SystemError::EISDIR); in poll()
/DragonOS-0.1.8/kernel/src/filesystem/devfs/
Dmod.rs465 return Err(SystemError::EISDIR); in poll()
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs76 EISDIR = 21, enumerator