Home | History | Annotate | Download | only in Modules

Lines Matching defs:statvfs

21 #  pragma weak statvfs
1365 "statvfs_result: Result from statvfs or fstatvfs.\n\n\
1370 See os.statvfs for more information.");
7439 needed definitions in sys/statvfs.h */
7442 #include <sys/statvfs.h>
7445 _pystatvfs_fromstructstatvfs(struct statvfs st) {
7484 "fstatvfs(fd) -> statvfs result\n\n\
7491 struct statvfs st;
7507 #include <sys/statvfs.h>
7510 "statvfs(path) -> statvfs result\n\n\
7511 Perform a statvfs system call on the given path.");
7518 struct statvfs st;
7519 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
7522 res = statvfs(path, &st);
9104 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
9526 if (statvfs == NULL) {
9527 if (PyObject_DelAttrString(m, "statvfs") == -1) {