Home | History | Annotate | Download | only in Modules

Lines Matching defs:statvfs

23 #  pragma weak statvfs

1184 "statvfs_result: Result from statvfs or fstatvfs.\n\n\
1189 See os.statvfs for more information.");
7195 needed definitions in sys/statvfs.h */
7198 #include <sys/statvfs.h>
7201 _pystatvfs_fromstructstatvfs(struct statvfs st) {
7240 "fstatvfs(fd) -> statvfs result\n\n\
7247 struct statvfs st;
7263 #include <sys/statvfs.h>
7266 "statvfs(path) -> statvfs result\n\n\
7267 Perform a statvfs system call on the given path.");
7274 struct statvfs st;
7275 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
7278 res = statvfs(path, &st);
8945 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
9372 if (statvfs == NULL) {
9373 if (PyObject_DelAttrString(m, "statvfs") == -1) {