Home | History | Annotate | Download | only in Modules

Lines Matching defs:FSTAT

1012 /* choose the appropriate stat and fstat functions and return structs */
1014 #undef FSTAT
1018 # define FSTAT win32_fstat
1022 # define FSTAT fstat
1266 /* specific to fstat() */
6828 "fstat(fd) -> stat result\n\n\
6837 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
6846 res = FSTAT(fd, &st);
6850 return win32_error("fstat", NULL);
6896 if (fstat(fd, &buf) == 0 && S_ISDIR(buf.st_mode)) {
9038 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},