HomeSort by: relevance | last modified time | path
    Searched refs:statfs (Results 1 - 25 of 37) sorted by relevancy

1 2

  /src/lib/librefuse/refuse/
v21.h 64 int (*statfs) (const char *, struct statfs *); member in struct:fuse_operations_v21
legacy.h 47 /* statfs structure used by FUSE < 1.9. On 2.1 it's been replaced with
48 * "struct statfs" and later replaced again with struct statvfs on
59 /* Linux-specific struct statfs; used by FUSE >= 2.1 && < 2.5. */
60 struct statfs { struct
v22.h 68 int (*statfs) (const char *, struct statfs *); member in struct:fuse_operations_v22
v23.h 68 int (*statfs) (const char *, struct statfs *); member in struct:fuse_operations_v23
v11.h 68 int (*statfs) (const char *, struct fuse_statfs *); member in struct:fuse_operations_v11
v25.h 64 int (*statfs) (const char *, struct statvfs *); member in struct:fuse_operations_v25
v28.h 64 int (*statfs) (const char *, struct statvfs *); member in struct:fuse_operations_v28
v29.h 64 int (*statfs) (const char *, struct statvfs *); member in struct:fuse_operations_v29
v34.h 62 int (*statfs) (const char *, struct statvfs *); member in struct:fuse_operations_v34
v35.h 62 int (*statfs) (const char *, struct statvfs *); member in struct:fuse_operations_v35
v26.h 64 int (*statfs) (const char *, struct statvfs *); member in struct:fuse_operations_v26
v30.h 72 int (*statfs) (const char *, struct statvfs *); member in struct:fuse_operations_v30
v38.h 62 int (*statfs) (const char *, struct statvfs *); member in struct:fuse_operations_v38
fs.c 660 linux_statfs_to_statvfs(struct statvfs* dst, const struct statfs* src) {
678 if (((const struct fuse_operations_v11*)fs->op)->statfs) {
682 ret = ((const struct fuse_operations_v11*)fs->op)->statfs(path, &statfs_v11);
692 * statfs". */
695 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->statfs) { \
696 struct statfs statfs_v22; \
699 ret = ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->statfs(path, &statfs_v22); \
714 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->statfs) \
715 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->statfs(path, buf); \
  /src/lib/libc/compat/sys/
compat_statfs.c 49 __warn_references(statfs,
50 "warning: reference to obsolete statfs(); use statvfs()")
61 __strong_alias(statfs, __compat_statfs)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_linux.cc 55 #include <sys/statfs.h>
sanitizer_platform_limits_solaris.cc 48 #include <sys/statfs.h>
90 unsigned struct_statfs_sz = sizeof(struct statfs);
  /src/share/misc/
style 214 struct statfs *, int *, char **[]);
505 dirinfo(const char *p, struct stat *sb, struct dirent *de, struct statfs *sf,
  /src/share/examples/refuse/dbfs/
dbfs.c 179 .statfs = dbfs_statfs
  /src/share/examples/refuse/id3fs/
id3fs.c 149 .statfs = id3fs_statfs
  /src/share/examples/refuse/pcifs/
pcifs.c 145 .statfs = pcifs_statfs
  /src/sbin/mount_qemufwcfg/
fwcfg.c 188 .statfs = fwcfg_statfs,
  /src/share/examples/refuse/ian/ian/
ian.c 248 .statfs = ian_statfs
  /src/share/examples/refuse/dmesgfs/
dmesgfs.c 179 .statfs = dmesgfs_statfs
  /src/sys/fs/nfs/client/
nfs_clport.c 963 * fill in this bsden's variant of statfs using nfsstatfs.
966 nfscl_loadsbinfo(struct nfsmount *nmp, struct nfsstatfs *sfp, void *statfs)
968 struct statfs *sbp = (struct statfs *)statfs;

Completed in 22 milliseconds

1 2