Searched refs:fsinfo (Results 1 - 5 of 5) sorted by relevance
/third_party/FreeBSD/sbin/fsck_msdosfs/ |
H A D | boot.c | 49 u_char fsinfo[2 * DOSBOOTBLOCKSIZE]; in readboot() local 202 || read(dosfs, fsinfo, sizeof fsinfo) != sizeof fsinfo) { in readboot() 203 perr("could not read fsinfo block"); in readboot() 206 if (memcmp(fsinfo, "RRaA", 4) in readboot() 207 || memcmp(fsinfo + 0x1e4, "rrAa", 4) in readboot() 208 || fsinfo[0x1fc] in readboot() 209 || fsinfo[0x1fd] in readboot() 210 || fsinfo[ in readboot() 339 u_char fsinfo[2 * DOSBOOTBLOCKSIZE]; writefsinfo() local [all...] |
/third_party/NuttX/fs/nfs/ |
H A D | rpc.h | 510 struct nfsv3_fsinfo fsinfo; member
|
H A D | nfs_adapter.c | 2766 struct rpc_call_fs fsinfo; in nfs_fsinfo() local 2773 fsinfo.fs.fsroot.length = txdr_unsigned(nmp->nm_fhsize); in nfs_fsinfo() 2774 fsinfo.fs.fsroot.handle = nmp->nm_fh; in nfs_fsinfo() 2780 (void *)&fsinfo, sizeof(struct FS3args), in nfs_fsinfo() 2787 if (txdr_unsigned(fsp.fsinfo.obj_attributes.obj_attribute_follow) == 1) in nfs_fsinfo() 2789 rep_info = (struct nfs_fsinfo *)&fsp.fsinfo.fs_rtmax; in nfs_fsinfo() 2793 rep_info = (struct nfs_fsinfo *)((void *)(&fsp.fsinfo.obj_attributes.attributes)); in nfs_fsinfo()
|
/third_party/littlefs/ |
H A D | lfs.h | 694 // Fills out the fsinfo structure based on the filesystem found on-disk. 696 int lfs_fs_stat(lfs_t *lfs, struct lfs_fsinfo *fsinfo);
|
H A D | lfs.c | 4497 static int lfs_fs_rawstat(lfs_t *lfs, struct lfs_fsinfo *fsinfo) { argument 4501 fsinfo->disk_version = lfs_fs_disk_version(lfs); 4522 fsinfo->disk_version = superblock.version; 4526 fsinfo->block_size = lfs->cfg->block_size; 4527 fsinfo->block_count = lfs->block_count; 4530 fsinfo->name_max = lfs->name_max; 4531 fsinfo->file_max = lfs->file_max; 4532 fsinfo->attr_max = lfs->attr_max; 6210 int lfs_fs_stat(lfs_t *lfs, struct lfs_fsinfo *fsinfo) { argument 6215 LFS_TRACE("lfs_fs_stat(%p, %p)", (void*)lfs, (void*)fsinfo); [all...] |
Completed in 14 milliseconds