Searched defs:fsinfo (Results 1 - 3 of 3) sorted by relevance

/external/fsck_msdos/
H A Dboot.c56 u_char fsinfo[2 * DOSBOOTBLOCKSIZE]; local
130 || read(dosfs, fsinfo, sizeof fsinfo)
131 != sizeof fsinfo) {
132 perror("could not read fsinfo block");
135 if (memcmp(fsinfo, "RRaA", 4)
136 || memcmp(fsinfo + 0x1e4, "rrAa", 4)
137 || fsinfo[0x1fc]
138 || fsinfo[0x1fd]
139 || fsinfo[
287 u_char fsinfo[2 * DOSBOOTBLOCKSIZE]; local
[all...]
/external/autotest/client/bin/
H A Dfsinfo_unittest.py5 from autotest_lib.client.bin import fsinfo namespace
12 self.god.stub_function(fsinfo, 'open')
21 fsinfo.open.expect_call(filename, 'r').and_return(test_file)
47 fsinfo.ext_mkfs_options(tune2fs_dict, mkfs_option)
96 fsinfo.xfs_mkfs_options(tune2fs_dict, mkfs_option)
103 result = fsinfo.opt_string2dict(test_string)
117 result = fsinfo.merge_ext_features(conf, user)
124 self.assertTrue(fsinfo.compare_features(f1, f1))
125 self.assertFalse(fsinfo.compare_features(f1, f2))
143 conf_opt = fsinfo
[all...]
/external/e2fsprogs/misc/
H A Dfilefrag.c335 static struct statfs fsinfo; local
368 if (fstatfs(fd, &fsinfo) < 0) {
375 (unsigned long) fsinfo.f_type);
377 st.st_blksize = fsinfo.f_bsize;
381 ((fsinfo.f_type == 0xef51) || (fsinfo.f_type == 0xef52) ||
382 (fsinfo.f_type == 0xef53)))
386 long cylgroups = div_ceil(fsinfo.f_blocks, fsinfo.f_bsize * 8);
392 data_blocks_per_cyl = fsinfo
[all...]

Completed in 125 milliseconds