Home
last modified time | relevance | path

Searched refs:EOPNOTSUPP_OR_ENOTSUP (Results 1 – 18 of 18) sorted by relevance

/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dmod.rs95 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in open()
104 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in close()
152 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in metadata()
161 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in set_metadata()
173 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in resize()
211 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in create_with_data()
223 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in link()
234 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in unlink()
244 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in rmdir()
264 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in move_()
[all …]
/DragonOS-0.1.8/kernel/src/driver/disk/ahci/
Dahci_inode.rs79 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in open()
83 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in close()
95 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in list()
/DragonOS-0.1.8/kernel/src/libs/
Dlockref.rs121 use crate::include::bindings::bindings::EOPNOTSUPP_OR_ENOTSUP; in cmpxchg_loop()
123 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP.to_posix_errno()); in cmpxchg_loop()
243 != SystemError::EOPNOTSUPP_OR_ENOTSUP.to_posix_errno() in dec_return()
/DragonOS-0.1.8/kernel/src/mm/
Dsyscall.rs141 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in mmap()
147 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in mmap()
Ducontext.rs685 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in find_free_at()
/DragonOS-0.1.8/kernel/src/filesystem/devfs/
Dmod.rs141 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in register_device()
184 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in unregister_device()
426 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in ioctl()
480 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in read_at()
491 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in write_at()
Dnull_dev.rs89 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in list()
Dzero_dev.rs89 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in list()
/DragonOS-0.1.8/kernel/src/driver/keyboard/
Dps2_keyboard.rs120 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in write_at()
181 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in list()
/DragonOS-0.1.8/kernel/src/time/
Dclocksource.rs183 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in enable()
187 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in disable()
191 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in vread()
195 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in suspend()
199 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in resume()
205 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in update_clocksource_data()
/DragonOS-0.1.8/kernel/src/process/
Dexec.rs76 ExecError::WrongArchitecture => SystemError::EOPNOTSUPP_OR_ENOTSUP, in into()
78 ExecError::NotSupported => SystemError::EOPNOTSUPP_OR_ENOTSUP, in into()
/DragonOS-0.1.8/kernel/src/filesystem/sysfs/
Dmod.rs175 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in read_at()
185 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in write_at()
266 Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) in ioctl()
/DragonOS-0.1.8/kernel/src/driver/tty/
Dtty_device.rs213 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in poll()
225 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in list()
/DragonOS-0.1.8/kernel/src/ipc/
Dpipe.rs228 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in list()
Dsignal.rs75 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in signal_kill_something_info()
/DragonOS-0.1.8/kernel/src/filesystem/procfs/
Dmod.rs419 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in write_at()
585 return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP); in move_()
/DragonOS-0.1.8/kernel/src/filesystem/fat/
Dfs.rs1446 FileType::SymLink => return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP), in create()
1498 FATDirEntry::Dir(_) => return Err(SystemError::EOPNOTSUPP_OR_ENOTSUP), in resize()
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs224 EOPNOTSUPP_OR_ENOTSUP = 94, enumerator