Home | History | Annotate | Download | only in Modules

Lines Matching refs:fdobj

687 posix_fildes(PyObject *fdobj, int (*func)(int))

691 fd = PyObject_AsFileDescriptor(fdobj);
1657 posix_fchdir(PyObject *self, PyObject *fdobj)
1659 return posix_fildes(fdobj, fchdir);
1854 posix_fsync(PyObject *self, PyObject *fdobj)
1856 return posix_fildes(fdobj, fsync);
1872 posix_fdatasync(PyObject *self, PyObject *fdobj)
1874 return posix_fildes(fdobj, fdatasync);