Symbol: statfs
headers/private/userlandfs/fuse/fuse.h
208
int (*statfs) (const char *, struct statvfs *);
headers/private/userlandfs/fuse/fuse_compat.h
140
int (*statfs) (const char *, struct statfs *);
headers/private/userlandfs/fuse/fuse_compat.h
188
int (*statfs) (struct fuse_statfs_compat1 *);
headers/private/userlandfs/fuse/fuse_compat.h
32
int (*statfs) (const char *, struct statvfs *);
headers/private/userlandfs/fuse/fuse_compat.h
91
int (*statfs) (const char *, struct statfs *);
headers/private/userlandfs/fuse/fuse_lowlevel.h
674
void (*statfs) (fuse_req_t req, fuse_ino_t ino);
headers/private/userlandfs/fuse/fuse_lowlevel_compat.h
121
void (*statfs) (fuse_req_t req);
headers/private/userlandfs/fuse/fuse_lowlevel_compat.h
133
int fuse_reply_statfs_compat(fuse_req_t req, const struct statfs *stbuf);
headers/private/userlandfs/fuse/fuse_lowlevel_compat.h
54
void (*statfs) (fuse_req_t req);
src/add-ons/kernel/file_systems/fat/bsd/sys/mount.h
62
struct statfs mnt_stat; /* cache of filesystem stats */
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSEFileSystem.cpp
488
fVolumeCapabilities.Set(FS_VOLUME_CAPABILITY_READ_FS_INFO, fLowLevelOps.statfs);
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSEFileSystem.cpp
549
fVolumeCapabilities.Set(FS_VOLUME_CAPABILITY_READ_FS_INFO, fFS->ops.statfs);
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSELowLevel.cpp
362
if (ops->statfs == NULL)
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSELowLevel.cpp
367
ops->statfs(&request, inode);
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSEVolume.cpp
904
if (fFS->ops.statfs == NULL)
src/add-ons/kernel/file_systems/userlandfs/server/fuse/fuse_fs.cpp
140
if (fs->ops.statfs == NULL)
src/add-ons/kernel/file_systems/userlandfs/server/fuse/fuse_fs.cpp
142
return fs->ops.statfs(path, buf);
src/libs/bsd/fts.c
101
struct statfs ftsp_statfs;
src/libs/bsd/fts.c
1239
if (statfs(ent->fts_path, &priv->ftsp_statfs) != -1) {
src/tools/fs_shell/fuse.cpp
424
fuseOps->statfs = fuse_statfs;