Searched refs:statvfs (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-statvfs.c1 /* $Id: bsd-statvfs.c,v 1.1 2008/06/08 17:32:29 dtucker Exp $ */
24 int statvfs(const char *path, struct statvfs *buf) function
32 int fstatvfs(int fd, struct statvfs *buf)
H A Dbsd-statvfs.h1 /* $Id: bsd-statvfs.h,v 1.1 2008/06/08 17:32:29 dtucker Exp $ */
44 struct statvfs { struct
63 int statvfs(const char *, struct statvfs *);
67 int fstatvfs(int, struct statvfs *);
/macosx-10.10/Libc-1044.1.2/include/sys/
H A Dstatvfs.h25 * sys/statvfs.h
36 /* Following structure is used as a statvfs/fstatvfs function parameter */
37 struct statvfs { struct
56 int fstatvfs(int, struct statvfs *);
57 int statvfs(const char * __restrict, struct statvfs * __restrict);
/macosx-10.10/Libc-1044.1.2/emulated/
H A Dstatvfs.c25 * sys/statvfs.c
30 #include <sys/statvfs.h> /* glue header */
35 cvt_statfs_to_statvfs(struct statfs *from, struct statvfs *to)
60 fstatvfs(int fildes, struct statvfs *buf)
73 statvfs(const char * __restrict path, struct statvfs * __restrict buf) function
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dstatvfs.c29 NoN(statvfs)
67 us2v(register struct statfs* ufs, register struct stat* st, register struct statvfs* vfs)
89 fstatvfs(int fd, struct statvfs* vfs)
101 statvfs(const char* path, struct statvfs* vfs)
119 s2v(register struct stat* st, register struct statvfs* vfs)
140 fstatvfs(int fd, struct statvfs* vfs)
151 statvfs(const char* path, struct statvfs* vfs)
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DFileSystemEfl.cpp46 #include <sys/statvfs.h>
104 struct statvfs buf;
105 if (statvfs(path, &buf) < 0)
/macosx-10.10/postfix-255/postfix/src/util/
H A Dfsspace.c50 #include <sys/statvfs.h>
57 #error "please specify the include file with `struct statvfs'"
90 struct statvfs fsbuf;
92 if (statvfs(path, &fsbuf) < 0)
93 msg_fatal("statvfs %s: %m", path);
/macosx-10.10/uucp-11/uucp/unix/
H A Dfsusg.c57 #include <sys/statvfs.h>
58 int statvfs ();
192 struct statvfs fsd;
194 if (statvfs (path, &fsd) < 0)
/macosx-10.10/xar-254/xar/lib/
H A Dfbsdattr.c112 struct statvfs sfs;
215 statvfs(file, &sfs);
274 struct statvfs sfs;
289 statvfs(file, &sfs);
/macosx-10.10/ksh-23/ksh/src/lib/libast/path/
H A Dpathprobe.c74 struct statvfs vfs;
77 if (!statvfs(path, &vfs))
/macosx-10.10/CPANInternal-159.1/Filesys-Df-0.92/
H A DDf.pm256 C<statvfs()> and C<fstatvfs()> calls, or the C<statfs()> and C<fstatfs()> calls.
316 Your system must contain C<statvfs()> and C<fstatvfs()>, or C<statfs()> and C<fstatfs()>
330 statvfs(2), fstatvfs(2), statfs(2), fstatfs(2), df(1), Filesys::DfPortable
/macosx-10.10/sudo-73/src/
H A Dcheck.c33 # include <sys/statvfs.h>
735 struct statvfs sfs;
737 if (statvfs(tty, &sfs) == 0) {
/macosx-10.10/Libc-1044.1.2/xcodescripts/
H A Dheaders.sh150 SYS_INSTHDRS=( ${SRCROOT}/include/sys/acl.h ${SRCROOT}/include/sys/statvfs.h )
201 ${SRCROOT}/include/sys/statvfs.h
/macosx-10.10/ksh-23/ksh/src/lib/libast/port/
H A Dmnt.c143 * we assume getfsstat may suffer the same statfs/statvfs confusion
151 #define statfs statvfs
156 #define statfs statvfs
/macosx-10.10/OpenSSH-189/openssh/
H A Dsftp-server.c30 #include <sys/statvfs.h>
491 send_statvfs(u_int32_t id, struct statvfs *st)
532 /* statvfs extension */
533 buffer_put_cstring(&msg, "statvfs@openssh.com");
1196 struct statvfs st;
1202 if (statvfs(path, &st) != 0)
1213 struct statvfs st;
1259 else if (strcmp(request, "statvfs@openssh.com") == 0)
H A Dsftp.c29 #include <sys/statvfs.h>
H A Dsftp-client.c28 #include <sys/statvfs.h>
294 debug3("Received statvfs reply T:%u I:%u", type, id);
301 debug("Couldn't statvfs: %s", fx2txt(status));
303 error("Couldn't statvfs: %s", fx2txt(status));
378 } else if (strcmp(name, "statvfs@openssh.com") == 0 &&
926 error("Server does not support statvfs@openssh.com extension");
936 buffer_put_cstring(&msg, "statvfs@openssh.com");
H A Dconfigure6109 sys/statvfs.h \
9575 statvfs \
13062 #include <sys/statvfs.h>
13083 #include <sys/statvfs.h>
14529 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if struct statvfs.f_fsid is integral type" >&5
14530 $as_echo_n "checking if struct statvfs.f_fsid is integral type... " >&6; }
14543 #include <sys/statvfs.h>
14549 struct statvfs s; s.f_fsid = 0;
14567 #include <sys/statvfs.h>
14595 #include <sys/statvfs
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/misc/
H A Dfts.c1526 struct statvfs fs;
1528 return statvfs(ent->fts_path, &fs) || (fs.f_flag & ST_LOCAL);
/macosx-10.10/ksh-23/ksh/src/lib/libast/
H A DMakefile121 lstat.c statvfs.c \
/macosx-10.10/cups-408/cups/scheduler/
H A Dprinters.c29 # include <sys/statvfs.h>
148 struct statvfs spoolinfo; /* FS info for spool directory */
372 if (statvfs(RequestRoot, &spoolinfo))
/macosx-10.10/cups-408/cups/test/
H A Dippserver.c68 # include <sys/statvfs.h>
1233 struct statvfs spoolinfo; /* FS info for spool directory */
1560 if (statvfs(printer->directory, &spoolinfo))
/macosx-10.10/lsof-53/lsof/
H A DConfigure3566 if test -r ${LSOF_INCLUDE}/sys/statvfs.h # {
3568 grep -q '^struct statvfs {' ${LSOF_INCLUDE}/sys/statvfs.h
/macosx-10.10/xar-254/xar/
H A Dconfigure4435 for ac_func in statvfs
4437 ac_fn_c_check_func "$LINENO" "statvfs" "ac_cv_func_statvfs"
4482 ac_fn_c_check_member "$LINENO" "struct statvfs" "f_fstypename" "ac_cv_member_struct_statvfs_f_fstypename" "#include <sys/statvfs.h>
/macosx-10.10/uucp-11/uucp/
H A Dconfigure2214 for ac_hdr in sys/statvfs.h sys/termiox.h
4675 # since it seems there are no variants of the statvfs function.
4678 for ac_func in statvfs

Completed in 402 milliseconds

12