Searched refs:statfs64 (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dgetmntinfo64.c46 struct statfs64 **mntbufp;
49 static struct statfs64 *mntbuf;
57 while (bufsize <= mntsize * sizeof(struct statfs64)) {
60 bufsize = (mntsize + 1) * sizeof(struct statfs64);
61 if ((mntbuf = (struct statfs64 *)malloc(bufsize)) == 0)
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dmount.h124 struct statfs64 __DARWIN_STRUCT_STATFS64;
1288 int fstatfs64(int, struct statfs64 *) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_5,__MAC_10_6,__IPHONE_NA,__IPHONE_NA);
1293 int getfsstat64(struct statfs64 *, int, int) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_5,__MAC_10_6,__IPHONE_NA,__IPHONE_NA);
1297 int getmntinfo64(struct statfs64 **, int) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_5,__MAC_10_6,__IPHONE_NA,__IPHONE_NA);
1302 int statfs64(const char *, struct statfs64 *) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_5,__MAC_10_6,__IPHONE_NA,__IPHONE_NA);
/macosx-10.9.5/xnu-2422.115.4/bsd/man/man2/
H A DMakefile201 statfs64.2 \
/macosx-10.9.5/xnu-2422.115.4/tools/tests/xnu_quick_test/
H A Dtests.c1312 * Test fstatfs, getattrlist, getfsstat, statfs, getfsstat64, statfs64, fstatfs64 system calls.
1343 struct statfs64 * my_statfs64p;
1345 my_buffer64_size = (sizeof(struct statfs64) * 10);
1395 /* now try statfs64 */
1396 my_statfs64p = (struct statfs64 *) my_buffer64p;
1397 my_err = statfs64( STATFS_TEST_PATH, my_statfs64p );
1399 printf( "statfs64 call failed. got errno %d - %s. \n", errno, strerror( errno ) );
1404 printf( "statfs64 call failed. wrong f_fsid! \n" );
1408 my_count = getfsstat64( (struct statfs64 *)my_buffer64p, my_buffer64_size, MNT_NOWAIT );
1415 my_statfs64p = (struct statfs64 *) my_buffer64
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/vfs/
H A Dvfs_syscalls.c2316 * Common routine to handle copying of statfs64 data to user space
2322 struct statfs64 sfs;
2355 statfs64(__unused struct proc *p, struct statfs64_args *uap, __unused int32_t *retval) function
2637 fstp->sfsp += sizeof(struct statfs64);
2653 maxcount = uap->bufsize / sizeof(struct statfs64);

Completed in 136 milliseconds