Home
last modified time | relevance | path

Searched refs:truncate (Results 1 – 5 of 5) sorted by relevance

/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dmount.rs146 fn truncate(&self, len: usize) -> Result<(), SystemError> { in truncate() method
147 return self.inner_inode.truncate(len); in truncate()
Dmod.rs333 fn truncate(&self, _len: usize) -> Result<(), SystemError> { in truncate() method
Dsyscall.rs172 inode.truncate(0)?; in open()
/DragonOS-0.1.8/kernel/src/filesystem/fat/
Dentry.rs343 pub fn truncate(&mut self, fs: &Arc<FATFileSystem>, new_size: u64) -> Result<(), SystemError> { in truncate() method
2173 s.truncate(len); in to_string()
Dfs.rs1493 file.truncate(fs, len as u64)?; in resize()