Home
last modified time | relevance | path

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

/xnu-12377.61.12/tests/vfs/
H A Dstatfs_ext.c79 statfs_compare(const char *path, struct statfs *sfs_ext, int mode, int flag, int expected_err) in statfs_compare() function
159 statfs_compare("/dev", &sfs_ext, TEST_MODE_STATFS, 0x10, EINVAL);
160 statfs_compare(testdir, &sfs_ext, TEST_MODE_FSTATFS, STATFS_EXT_NOBLOCK | 0x8, EINVAL);
163 statfs_compare(NULL, &sfs_ext, TEST_MODE_STATFS, STATFS_EXT_NOBLOCK, EFAULT);
164 statfs_compare("/", NULL, TEST_MODE_STATFS, STATFS_EXT_NOBLOCK, EFAULT);
165 statfs_compare("/dev", NULL, TEST_MODE_FSTATFS, STATFS_EXT_NOBLOCK, EFAULT);
168 statfs_compare("/", &sfs_ext, TEST_MODE_STATFS, 0, 0);
169 statfs_compare("/private/var/tmp", &sfs_ext, TEST_MODE_FSTATFS, 0, 0);
172 statfs_compare("/", &sfs_ext, TEST_MODE_STATFS, STATFS_EXT_NOBLOCK, 0);
173 statfs_compare("/dev", &sfs_ext, TEST_MODE_STATFS, STATFS_EXT_NOBLOCK, 0);
[all …]