Searched refs:f_ffree (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbsd-statvfs.h53 fsfilcnt_t f_ffree; /* Total number of free file serial numbers. */ member in struct:statvfs
/macosx-10.9.5/Libc-997.90.3/emulated/
H A Dstatvfs.c43 to->f_ffree = from->f_ffree;
44 to->f_favail = from->f_ffree;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dstatvfs.c80 vfs->f_ffree = ufs->f_ffree;
81 vfs->f_favail = (ufs->f_ffree > 10) ? (ufs->f_ffree - 10) : 0;
131 vfs->f_ffree = HUH;
/macosx-10.9.5/Libc-997.90.3/include/sys/
H A Dstatvfs.h44 fsfilcnt_t f_ffree; /* Free inodes */ member in struct:statvfs
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsftp-client.h43 u_int64_t f_ffree; member in struct:sftp_statvfs
H A Dsftp.c872 ffree = st.f_files ? (100 * (st.f_files - st.f_ffree) / st.f_files) : 0;
877 (unsigned long long)(st.f_files - st.f_ffree),
879 (unsigned long long)st.f_ffree, ffree);
H A Dsftp-server.c508 buffer_put_int64(&msg, st->f_ffree);
H A Dsftp-client.c318 st->f_ffree = buffer_get_int64(&msg);
/macosx-10.9.5/webdavfs-352.92.2/webdav_fs.kextproj/webdav_fs.kmodproj/
H A Dwebdav_vfsops.c576 if (!in_statfs.f_ffree)
577 sbp->f_ffree = (uint64_t) WEBDAV_FREE_FILES;
579 sbp->f_ffree = (uint64_t) in_statfs.f_ffree;
615 VFSATTR_IS_ACTIVE(sbp, f_files) || VFSATTR_IS_ACTIVE(sbp, f_ffree))
730 if (VFSATTR_IS_ACTIVE(sbp, f_ffree))
732 if (!reply_statfs.fs_attr.f_ffree)
734 VFSATTR_RETURN(sbp, f_ffree, WEBDAV_FREE_FILES);
738 VFSATTR_RETURN(sbp, f_ffree, reply_statfs.fs_attr.f_ffree);
[all...]
H A Dwebdav.h155 uint64_t f_ffree; /* free file nodes in fs */ member in struct:webdav_vfsstatfs
448 uint64_t f_ffree; /* free file nodes in fs */ member in struct:webdav_statfs
462 * f_bavail, f_files, f_ffree. The kext will either copy
/macosx-10.9.5/uucp-11/uucp/unix/
H A Dfsusg.c295 fsp->fsu_ffree = fsd.f_ffree;
326 fsb->f_ffree = fsd.du_tinode;
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dmount_internal.h357 user64_long_t f_ffree; /* free file nodes in fs */ member in struct:user64_statfs
384 user32_long_t f_ffree; /* free file nodes in fs */ member in struct:user32_statfs
H A Dmount.h110 uint64_t f_ffree; /* free file nodes in fs */ \
146 long f_ffree; /* free file nodes in fs */ member in struct:statfs
172 uint64_t f_ffree; /* free file nodes in fs */ member in struct:vfsstatfs
253 uint64_t f_ffree; /* free file nodes in fs */ member in struct:vfs_attr
/macosx-10.9.5/file_cmds-230/df/
H A Ddf.c501 used = inodes - sfsp->f_ffree;
503 mwp->ifree, (unsigned long)sfsp->f_ffree, inodes == 0 ? 100.0 :
531 mwp->iused = imax(mwp->iused, longwidth((unsigned)(sfsp->f_files - sfsp->f_ffree)));
532 mwp->ifree = imax(mwp->ifree, longwidth((unsigned)(sfsp->f_ffree)));
/macosx-10.9.5/xnu-2422.115.4/bsd/miscfs/devfs/
H A Ddevfs_vfsops.c300 sbp->f_ffree = 0;
327 VFSATTR_RETURN(fsap, f_ffree, 0);
/macosx-10.9.5/webdavfs-352.92.2/mount.tproj/
H A Dwebdav_agent.c1195 args.pa_vfsstatfs.f_ffree = reply_statfs.fs_attr.f_ffree;
H A Dwebdav_file.c672 reply_statfs->fs_attr.f_ffree = statfs_cache_buffer.f_ffree;
/macosx-10.9.5/smb-697.95.1/kernel/smbfs/
H A Dsmbfs_vfsops.c1353 VFSATTR_IS_ACTIVE(fsap, f_files) || VFSATTR_IS_ACTIVE(fsap, f_ffree)))) {
1395 VFSATTR_RETURN(fsap, f_ffree, cachedstatfs.f_ffree);
/macosx-10.9.5/cddafs-252/
H A DAppleCDDAFileSystemVFSOps.c548 VFSATTR_RETURN ( attrPtr, f_ffree, 0 );
/macosx-10.9.5/xnu-2422.115.4/bsd/vfs/
H A Dvfs_subr.c3400 sfs.f_ffree = (user64_long_t)sp->f_ffree;
3458 sfs.f_ffree = (user32_long_t)sp->f_ffree;
4818 VFSATTR_WANTED(&va, f_ffree);
4843 * f_ffree
4873 if (VFSATTR_IS_SUPPORTED(&va, f_ffree))
4874 mp->mnt_vfsstat.f_ffree = va.f_ffree;
H A Dvfs_syscalls.c2332 sfs.f_ffree = sfsp->f_ffree;
9588 sfs.f_ffree = (user64_long_t)sfsp->f_ffree;
9665 sfs.f_ffree = (user32_long_t)sfsp->f_ffree;
/macosx-10.9.5/msdosfs-198/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_vfsops.c1027 sbp->f_ffree = 0; /* what to put in here? */
/macosx-10.9.5/xnu-2422.115.4/bsd/nfs/
H A Dnfs_serv.c4475 VFSATTR_WANTED(&va, f_ffree);
4503 nfsm_chain_add_64(error, &nmrep, va.f_ffree);
4504 nfsm_chain_add_64(error, &nmrep, va.f_ffree);
/macosx-10.9.5/autofs-234/autofs_kext/
H A Dauto_vfsops.c1034 VFSATTR_RETURN(vfap, f_ffree, 0);
/macosx-10.9.5/ntfs-83/kext/
H A Dntfs_vfsops.c3374 sfs->f_ffree = (u64)vol->nr_free_mft_records;
4688 VFSATTR_RETURN(fsa, f_ffree, nr_free_mft_records);

Completed in 303 milliseconds

12