Home
last modified time | relevance | path

Searched refs:E2BIG (Results 1 – 12 of 12) sorted by relevance

/DragonOS-0.1.8/kernel/src/libs/
Dvec_cursor.rs47 return Err(SystemError::E2BIG); in read_u8()
56 return Err(SystemError::E2BIG); in read_u16()
70 return Err(SystemError::E2BIG); in read_u32()
84 return Err(SystemError::E2BIG); in read_u64()
103 return Err(SystemError::E2BIG); in read_exact()
115 return Err(SystemError::E2BIG); in read_u16_into()
159 return Err(SystemError::E2BIG); in write_u8()
171 return Err(SystemError::E2BIG); in write_u16()
185 return Err(SystemError::E2BIG); in write_u32()
199 return Err(SystemError::E2BIG); in write_u64()
[all …]
/DragonOS-0.1.8/kernel/src/filesystem/sysfs/
Dclass.rs15 .ok_or(SystemError::E2BIG) in sys_class_register()
30 .ok_or(SystemError::E2BIG) in sys_class_unregister()
48 .ok_or(SystemError::E2BIG) in class_device_register()
66 .ok_or(SystemError::E2BIG) in class_device_unregister()
Dbus.rs16 .ok_or(SystemError::E2BIG) in sys_bus_register()
30 .ok_or(SystemError::E2BIG) in sys_bus_unregister()
49 None => Err(SystemError::E2BIG), in sys_bus_init()
63 .ok_or(SystemError::E2BIG) in bus_driver_register()
82 .ok_or(SystemError::E2BIG) in bus_device_register()
Ddevices.rs15 .ok_or(SystemError::E2BIG) in sys_device_register()
30 .ok_or(SystemError::E2BIG) in sys_device_unregister()
Dfs.rs15 .ok_or(SystemError::E2BIG) in fs_register()
30 .ok_or(SystemError::E2BIG) in fs_unregister()
Dmod.rs382 .ok_or(SystemError::E2BIG) in link()
/DragonOS-0.1.8/kernel/src/io/
Ddevice.rs111 return Err(SystemError::E2BIG); in read_at()
131 return Err(SystemError::E2BIG); in read_at()
148 return Err(SystemError::E2BIG); in write_at()
165 return Err(SystemError::E2BIG); in write_at()
/DragonOS-0.1.8/kernel/src/common/
Derrno.h18 #define E2BIG 7 /* 参数列表过长,或者在输出buffer中缺少空间 或者参数比系统内建的最大值要大 Argument list too long. */ macro
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Derrno.h24 #define E2BIG 7 /* 参数列表过长,或者在输出buffer中缺少空间 或者参数比系统内建的最大值要大 Argument list too long. */ macro
/DragonOS-0.1.8/kernel/src/driver/disk/ahci/
Dahcidisk.rs64 return Err(SystemError::E2BIG); in read_at()
222 return Err(SystemError::E2BIG); in write_at()
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Derrno.md12 #define E2BIG 1 /* 参数列表过长,或者在输出buffer中缺少空间 或者参数比系统内建的最大值要大 Argument list too long.*/
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs46 E2BIG = 7, enumerator