Searched refs:statfs (Results 1 – 6 of 6) sorted by relevance
6 struct statfs diskInfo; in main()9 statfs("/bin/about.elf", &diskInfo); in main()
4 "description": "测试statfs",
11 struct statfs diskInfo; in main()
778 let statfs = args[1] as *mut PosixStatfs; in handle() localVariable779 Self::statfs(path, statfs) in handle()784 let statfs = args[1] as *mut PosixStatfs; in handle() localVariable785 Self::fstatfs(fd, statfs) in handle()
1365 pub fn statfs(path: *const u8, user_statfs: *mut PosixStatfs) -> Result<usize, SystemError> { in statfs() method1380 let statfs = PosixStatfs::from(inode.fs().super_block()); in statfs() localVariable1381 writer.copy_one_to_user(&statfs, 0)?; in statfs()1393 let statfs = PosixStatfs::from(file.inode().fs().super_block()); in fstatfs() localVariable1394 writer.copy_one_to_user(&statfs, 0)?; in fstatfs()
46 - feat(fs): 新加结构体POSIXSTATFS与SuperBlock用于处理statfs系统调用 (#667)746 新加结构体POSIXSTATFS与SuperBlock用于处理statfs系统调用 (#667)748 * 新加结构体POSIXSTATFS与SuperBlock用于处理statfs系统调用