Searched refs:callback_read (Results 1 – 3 of 3) sorted by relevance
/DragonOS/kernel/src/filesystem/kernfs/ |
H A D | callback.rs | 68 pub fn callback_read(&self, buf: &mut [u8], offset: usize) -> Result<usize, SystemError> { in callback_read() method 71 return private_data.callback_read(buf, offset); in callback_read() 93 pub fn callback_read(&self, buf: &mut [u8], offset: usize) -> Result<usize, SystemError> { in callback_read() method 96 return private_data.callback_read(buf, offset); in callback_read()
|
/DragonOS/kernel/src/filesystem/sysfs/ |
H A D | mod.rs | 69 pub fn callback_read(&self, buf: &mut [u8], offset: usize) -> Result<usize, SystemError> { in callback_read() method 72 let len = file.callback_read(buf, offset)?; in callback_read()
|
H A D | file.rs | 60 pub fn callback_read(&self, buf: &mut [u8], offset: usize) -> Result<usize, SystemError> { in callback_read() method 300 return data.callback_read(buf, offset); in read() 332 return data.callback_read(buf, offset); in read()
|