Searched refs:statfs (Results 76 - 100 of 137) sorted by relevance

123456

/freebsd-11-stable/sys/fs/nfsclient/
H A Dnfs_clport.c961 * fill in this bsden's variant of statfs using nfsstatfs.
964 nfscl_loadsbinfo(struct nfsmount *nmp, struct nfsstatfs *sfp, void *statfs) argument
966 struct statfs *sbp = (struct statfs *)statfs;
/freebsd-11-stable/contrib/unbound/compat/
H A Dgetentropy_solaris.c54 #include <sys/statfs.h>
/freebsd-11-stable/tools/regression/security/open_to_operation/
H A Dopen_to_operation.c429 struct statfs statfs; local
442 if (fstatfs(fd, &statfs) == 0)
/freebsd-11-stable/tests/sys/audit/
H A Dfile-attribute-access.c49 static struct statfs statfsbuff;
242 "statfs(2) call");
247 /* File needs to exist to call statfs(2) */
250 ATF_REQUIRE_EQ(0, statfs(path, &statfsbuff));
265 "statfs(2) call");
272 ATF_REQUIRE_EQ(-1, statfs(errpath, &statfsbuff));
/freebsd-11-stable/sys/kern/
H A Dvfs_default.c942 struct statfs *sfs;
979 sfs = malloc(sizeof(struct statfs), M_STATFS, M_WAITOK);
1211 struct statfs *sbp;
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_disk_posix.c44 #include <sys/statfs.h>
1543 set_statfs_transfer_size(struct filesystem *fs, const struct statfs *sfs)
1567 struct statfs sfs;
1614 r = statfs(tree_current_access_path(t), &sfs);
1624 archive_set_error(&a->archive, errno, "statfs failed");
1660 /* Mac OS X does not have f_namemax in struct statfs. */
1742 * Note: statfs is deprecated since LSB 3.2
1759 struct statfs sfs;
1794 r = statfs(tree_current_access_path(t), &sfs);
1814 r = statfs("
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dsys-protos.h409 extern int fstatfs(int, struct statfs *, int, int);
1069 extern int statfs(const char *, struct statfs *, int, int);
/freebsd-11-stable/sys/sys/
H A Dsysproto.h1113 char buf_l_[PADL_(struct statfs *)]; struct statfs * buf; char buf_r_[PADR_(struct statfs *)];
1119 char buf_l_[PADL_(struct statfs *)]; struct statfs * buf; char buf_r_[PADR_(struct statfs *)];
1123 char buf_l_[PADL_(struct statfs *)]; struct statfs * buf; char buf_r_[PADR_(struct statfs *)];
1127 char buf_l_[PADL_(struct statfs *)]; struc
[all...]
/freebsd-11-stable/lib/libugidfw/
H A Dugidfw.c66 struct statfs *mntbuf;
788 struct statfs buf;
790 if (statfs(spec, &buf) < 0) {
/freebsd-11-stable/sys/fs/smbfs/
H A Dsmbfs_smb.c139 smbfs_query_info_fs(struct smb_share *ssp, struct statfs *sbp,
180 smbfs_query_info_alloc(struct smb_share *ssp, struct statfs *sbp,
221 smbfs_query_info_disk(struct smb_share *ssp, struct statfs *sbp,
258 smbfs_smb_statfs(struct smb_share *ssp, struct statfs *sbp,
H A Dsmbfs_vfsops.c386 smbfs_statfs(struct mount *mp, struct statfs *sbp)
/freebsd-11-stable/bin/rm/
H A Drm.c426 struct statfs fsb;
/freebsd-11-stable/sbin/fsck/
H A Dfsck.c198 struct statfs *mntp;
/freebsd-11-stable/sys/fs/fuse/
H A Dfuse_vfsops.c473 fuse_vfsop_statfs(struct mount *mp, struct statfs *sbp)
/freebsd-11-stable/sys/fs/nfs/
H A Dnfs_var.h282 struct nfsv3_pathconf *, struct statfs *, struct nfsstatfs *,
645 int nfsvno_statfs(vnode_t, struct statfs *);
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c223 copy_statfs(struct statfs *in, struct statfs32 *out)
257 struct statfs *buf, *sp;
263 size = count * sizeof(struct statfs);
1476 struct statfs *sp;
1479 sp = malloc(sizeof(struct statfs), M_STATFS, M_WAITOK);
1495 struct statfs *sp;
1498 sp = malloc(sizeof(struct statfs), M_STATFS, M_WAITOK);
1514 struct statfs *sp;
1520 sp = malloc(sizeof(struct statfs), M_STATFS, M_WAITOK);
/freebsd-11-stable/lib/libc/gen/
H A Dfts-compat.c99 struct statfs ftsp_statfs;
1190 if (statfs(ent->fts_path, &priv->ftsp_statfs) != -1) {
H A Dfts.c89 struct statfs ftsp_statfs;
1167 if (statfs(ent->fts_path, &priv->ftsp_statfs) != -1) {
/freebsd-11-stable/sbin/fdisk/
H A Dfdisk.c1504 struct statfs rootfs;
1511 if (statfs("/", &rootfs) == -1)
1512 err(1, "statfs(\"/\")");
/freebsd-11-stable/sbin/tunefs/
H A Dtunefs.c98 struct statfs stfs;
309 if (statfs(special, &stfs) != 0)
/freebsd-11-stable/usr.sbin/jail/
H A Dcommand.c932 struct statfs stfs;
974 if (stat(path, &st) < 0 || statfs(path, &stfs) < 0) {
/freebsd-11-stable/lib/libbe/
H A Dbe.c78 struct statfs sfs;
88 if (statfs("/", &sfs) == 0) {
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_util.c770 struct statfs sfs;
772 ret = statfs(path, &sfs);
/freebsd-11-stable/sbin/dump/
H A Dmain.c628 struct statfs *mntbuf;
/freebsd-11-stable/tools/regression/security/cap_test/
H A Dcap_test_capabilities.c117 struct statfs sf;

Completed in 394 milliseconds

123456