Symbol: statvfs
headers/posix/sys/statvfs.h
34
int statvfs(const char *path, struct statvfs *buffer);
headers/posix/sys/statvfs.h
35
int fstatvfs(int descriptor, struct statvfs *buffer);
headers/private/userlandfs/fuse/fuse.h
208
int (*statfs) (const char *, struct statvfs *);
headers/private/userlandfs/fuse/fuse.h
846
int fuse_fs_statfs(struct fuse_fs *fs, const char *path, struct statvfs *buf);
headers/private/userlandfs/fuse/fuse_compat.h
32
int (*statfs) (const char *, struct statvfs *);
headers/private/userlandfs/fuse/fuse_lowlevel.h
1196
int fuse_reply_statfs(fuse_req_t req, const struct statvfs *stbuf);
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSELowLevel.cpp
360
fuse_ll_statfs(const fuse_lowlevel_ops* ops, fuse_ino_t inode, struct statvfs* stat)
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSELowLevel.cpp
504
fuse_reply_statfs(fuse_req_t req, const struct statvfs* stat)
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSELowLevel.cpp
55
struct statvfs* fReplyStat;
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSELowLevel.h
49
int fuse_ll_statfs(const fuse_lowlevel_ops* ops, fuse_ino_t inode, struct statvfs* stat);
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSEVolume.cpp
898
struct statvfs st;
src/add-ons/kernel/file_systems/userlandfs/server/fuse/fuse_fs.cpp
138
fuse_fs_statfs(struct fuse_fs* fs, const char* path, struct statvfs* buf)
src/system/libroot/posix/sys/statvfs.c
14
fill_statvfs(dev_t device, struct statvfs *statvfs)
src/system/libroot/posix/sys/statvfs.c
20
statvfs->f_frsize = statvfs->f_bsize = info.block_size;
src/system/libroot/posix/sys/statvfs.c
21
statvfs->f_blocks = info.total_blocks;
src/system/libroot/posix/sys/statvfs.c
22
statvfs->f_bavail = statvfs->f_bfree = info.free_blocks;
src/system/libroot/posix/sys/statvfs.c
23
statvfs->f_files = info.total_nodes;
src/system/libroot/posix/sys/statvfs.c
24
statvfs->f_favail = statvfs->f_ffree = info.free_nodes;
src/system/libroot/posix/sys/statvfs.c
25
statvfs->f_fsid = device;
src/system/libroot/posix/sys/statvfs.c
26
statvfs->f_flag = info.flags & B_FS_IS_READONLY ? ST_RDONLY : 0;
src/system/libroot/posix/sys/statvfs.c
27
statvfs->f_namemax = B_FILE_NAME_LENGTH;
src/system/libroot/posix/sys/statvfs.c
37
statvfs(const char *path, struct statvfs *statvfs)
src/system/libroot/posix/sys/statvfs.c
43
return fill_statvfs(device, statvfs);
src/system/libroot/posix/sys/statvfs.c
48
fstatvfs(int fd, struct statvfs *statvfs)
src/system/libroot/posix/sys/statvfs.c
54
return fill_statvfs(stat.st_dev, statvfs);
src/system/libroot/posix/unistd/conf.cpp
431
__pathconf_common(struct statvfs *fs, struct stat *st,
src/system/libroot/posix/unistd/conf.cpp
544
struct statvfs fs;
src/system/libroot/posix/unistd/conf.cpp
564
struct statvfs fs;
src/system/libroot/posix/unistd/conf.cpp
574
ret = statvfs(path, &fs);
src/tools/fs_shell/fuse.cpp
379
struct statvfs *sfs)