Searched refs:callback_write (Results 1 – 3 of 3) sorted by relevance
/DragonOS/kernel/src/filesystem/kernfs/ |
H A D | callback.rs | 76 pub fn callback_write(&self, buf: &[u8], offset: usize) -> Result<usize, SystemError> { in callback_write() method 79 return private_data.callback_write(buf, offset); in callback_write() 102 pub fn callback_write(&self, buf: &[u8], offset: usize) -> Result<usize, SystemError> { in callback_write() method 105 return private_data.callback_write(buf, offset); in callback_write()
|
/DragonOS/kernel/src/filesystem/sysfs/ |
H A D | mod.rs | 83 pub fn callback_write(&self, buf: &[u8], offset: usize) -> Result<usize, SystemError> { in callback_write() method 86 return file.callback_write(buf, offset); in callback_write()
|
H A D | file.rs | 83 pub fn callback_write(&self, buf: &[u8], offset: usize) -> Result<usize, SystemError> { in callback_write() method 309 return data.callback_write(buf, offset); in write() 373 return data.callback_write(buf, offset); in write()
|