Home
last modified time | relevance | path

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

/xnu-11417.140.69/tests/vfs/
H A Dstatfs_ext.c114 case STATFS_EXT_NOBLOCK: in statfs_compare()
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);
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);
166 statfs_compare("/private/var/tmp", &sfs_ext, TEST_MODE_FSTATFS, STATFS_EXT_NOBLOCK, 0);
167 statfs_compare(testdir, &sfs_ext, TEST_MODE_FSTATFS, STATFS_EXT_NOBLOCK, 0);
/xnu-11417.140.69/libsyscall/wrappers/
H A Dstatfs_ext.c139 if (flags & ~(STATFS_EXT_NOBLOCK)) { in __statfs_ext_impl()
150 if (flags & STATFS_EXT_NOBLOCK) { in __statfs_ext_impl()
/xnu-11417.140.69/bsd/sys/
H A Dmount.h1565 #define STATFS_EXT_NOBLOCK 0x0001 macro