Searched refs:statfs_compare (Results 1 – 1 of 1) sorted by relevance
| /xnu-11417.101.15/tests/vfs/ |
| H A D | statfs_ext.c | 72 statfs_compare(const char *path, struct statfs *sfs_ext, int mode, int flag, int expected_err) in statfs_compare() function 151 statfs_compare("/dev", &sfs_ext, TEST_MODE_STATFS, 0x10, EINVAL); 152 statfs_compare(testdir, &sfs_ext, TEST_MODE_FSTATFS, STATFS_EXT_NOBLOCK | 0x8, EINVAL); 155 statfs_compare(NULL, &sfs_ext, TEST_MODE_STATFS, STATFS_EXT_NOBLOCK, EFAULT); 156 statfs_compare("/", NULL, TEST_MODE_STATFS, STATFS_EXT_NOBLOCK, EFAULT); 157 statfs_compare("/dev", NULL, TEST_MODE_FSTATFS, STATFS_EXT_NOBLOCK, EFAULT); 160 statfs_compare("/", &sfs_ext, TEST_MODE_STATFS, 0, 0); 161 statfs_compare("/private/var/tmp", &sfs_ext, TEST_MODE_FSTATFS, 0, 0); 164 statfs_compare("/", &sfs_ext, TEST_MODE_STATFS, STATFS_EXT_NOBLOCK, 0); 165 statfs_compare("/dev", &sfs_ext, TEST_MODE_STATFS, STATFS_EXT_NOBLOCK, 0); [all …]
|