/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/ |
H A D | statvfs.c | 55 #define FSTATFS(a,b) fstatfs(a,b,sizeof(struct statfs),0) 56 #define STATFS(a,b) statfs(a,b,sizeof(struct statfs),0) 59 #define STATFS(a,b) statfs(a,b) 67 us2v(register struct statfs* ufs, register struct stat* st, register struct statvfs* vfs) 91 struct statfs ufs; 103 struct statfs ufs;
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | statfs.h | 46 struct statfs { struct 75 int statfs(const char *, struct statfs *, int, int); argument 76 int fstatfs(int, struct statfs *, int, int);
|
/illumos-gate/usr/src/ucblib/libucb/port/gen/ |
H A D | statfs.c | 67 cnvtvfs(struct statfs *buf, struct statvfs *vbuf) in cnvtvfs() 81 statfs(char *path, struct statfs *buf) in statfs() function 98 fstatfs(int fd, struct statfs *buf) in fstatfs()
|
/illumos-gate/usr/src/lib/libc/common/sys/ |
H A D | statfs.S | 38 SYSCALL_RVAL1(statfs) 40 SET_SIZE(statfs)
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/ |
H A D | fs | 133 sys fs_types,mount,statfs,statvfs,vfs,vmount sys/param.h sys/ucred.h 139 mem statfs.f_files,statfs.f_bavail sys/types.h - sys/statfs.h - sys/vfs.h - sys/param.h sys/mount.h 148 lib statfs,statvfs 150 lib statfs4 sys/types.h - sys/statfs.h - sys/vfs.h - sys/mount.h compile{ 153 struct statfs fs; 154 return statfs("/",&fs,sizeof(fs),0);
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/port/ |
H A D | mnt.c | 151 #define statfs statvfs 156 #define statfs statvfs 164 struct statfs* next; 165 struct statfs* last; 168 struct statfs buf[1]; 274 n = (n - 1) * sizeof(struct statfs); 281 n = getfsstat(mp->next = mp->buf, n + sizeof(struct statfs), MNT_WAIT);
|
/illumos-gate/usr/src/lib/lib9p/common/ |
H A D | pack.c | 613 l9p_pu32(msg, &fcall->rstatfs.statfs.type); in l9p_pufcall() 614 l9p_pu32(msg, &fcall->rstatfs.statfs.bsize); in l9p_pufcall() 615 l9p_pu64(msg, &fcall->rstatfs.statfs.blocks); in l9p_pufcall() 616 l9p_pu64(msg, &fcall->rstatfs.statfs.bfree); in l9p_pufcall() 617 l9p_pu64(msg, &fcall->rstatfs.statfs.bavail); in l9p_pufcall() 618 l9p_pu64(msg, &fcall->rstatfs.statfs.files); in l9p_pufcall() 619 l9p_pu64(msg, &fcall->rstatfs.statfs.ffree); in l9p_pufcall() 620 l9p_pu64(msg, &fcall->rstatfs.statfs.fsid); in l9p_pufcall() 621 r = l9p_pu32(msg, &fcall->rstatfs.statfs.namelen); in l9p_pufcall()
|
H A D | fcall.h | 368 struct l9p_statfs statfs; member
|
/illumos-gate/usr/src/cmd/ast/libast/amd64/FEATURE/ |
H A D | fs | 82 #define _sys_statfs 1 /* #include <sys/statfs.h> ok */ 88 #define _mem_f_files_statfs 1 /* f_files is a member of struct statfs */ 92 #define _lib_statfs 1 /* statfs() in default lib(s) */
|
/illumos-gate/usr/src/cmd/ast/libast/sparc/FEATURE/ |
H A D | fs | 82 #define _sys_statfs 1 /* #include <sys/statfs.h> ok */ 88 #define _mem_f_files_statfs 1 /* f_files is a member of struct statfs */ 92 #define _lib_statfs 1 /* statfs() in default lib(s) */
|
/illumos-gate/usr/src/cmd/ast/libast/sparcv9/FEATURE/ |
H A D | fs | 82 #define _sys_statfs 1 /* #include <sys/statfs.h> ok */ 88 #define _mem_f_files_statfs 1 /* f_files is a member of struct statfs */ 92 #define _lib_statfs 1 /* statfs() in default lib(s) */
|
/illumos-gate/usr/src/ucbhead/sys/ |
H A D | vfs.h | 226 struct statfs { struct 238 struct statfs { argument
|
/illumos-gate/usr/src/cmd/ast/libast/i386/FEATURE/ |
H A D | fs | 86 #define _sys_statfs 1 /* #include <sys/statfs.h> ok */ 92 #define _mem_f_files_statfs 1 /* f_files is a member of struct statfs */ 96 #define _lib_statfs 1 /* statfs() in default lib(s) */
|
/illumos-gate/usr/src/cmd/truss/ |
H A D | expound.c | 1616 struct statfs statfs; in show_statfs() local 1619 Pread(Proc, &statfs, sizeof (statfs), offset) == sizeof (statfs)) { in show_statfs() 1623 statfs.f_fstyp, in show_statfs() 1624 statfs.f_bsize, in show_statfs() 1625 statfs.f_frsize, in show_statfs() 1626 statfs.f_blocks, in show_statfs() 1627 statfs.f_bfree, in show_statfs() 1628 statfs.f_files, in show_statfs() 1629 statfs.f_ffree); in show_statfs() 1632 statfs.f_fname, in show_statfs() [all …]
|
/illumos-gate/usr/src/lib/lib9p/common/backend/ |
H A D | backend.h | 45 int (*statfs)(void *, struct l9p_request *); member
|
H A D | fs.c | 212 static void dostatfs(struct l9p_statfs *, struct statfs *, long); 733 dostatfs(struct l9p_statfs *out, struct statfs *in, long namelen) in dostatfs() 2222 struct statfs f; in fs_statfs() 2264 dostatfs(&req->lr_resp.rstatfs.statfs, &f, name_max); in fs_statfs() 3139 backend->statfs = fs_statfs; in l9p_backend_fs_init()
|
/illumos-gate/usr/src/cmd/backup/dump/ |
H A D | dumpusg.h | 81 #define statfs statvfs /* both struct and func */ macro
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | statfs.c | 119 if (len < 0 || len > sizeof (struct statfs)) in cstatfs()
|
H A D | SYSCALL.README | 271 statfs vfs.c common/syscall/statfs.c 272 fstatfs vfs.c common/syscall/statfs.c
|
/illumos-gate/usr/src/ucblib/libucb/ |
H A D | Makefile.com | 73 statfs.o \
|
/illumos-gate/usr/src/uts/sparc/os/ |
H A D | name_to_sysnum | 34 statfs 35
|
/illumos-gate/usr/src/uts/intel/os/ |
H A D | name_to_sysnum | 34 statfs 35
|
/illumos-gate/usr/src/cmd/fs.d/smbclnt/fksmbcl/ |
H A D | README | 58 statfs
|
/illumos-gate/usr/src/ucblib/libucb/port/ |
H A D | mapfile-vers | 133 statfs;
|
/illumos-gate/usr/src/cmd/hal/tools/ |
H A D | hal-storage-shared.c | 63 struct statfs *mounts;
|