Home
last modified time | relevance | path

Searched refs:callback_read (Results 1 – 3 of 3) sorted by relevance

/DragonOS/kernel/src/filesystem/kernfs/
H A Dcallback.rs68 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 Dmod.rs69 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 Dfile.rs60 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()