Searched refs:fdobj (Results 1 – 1 of 1) sorted by relevance
854 posix_fildes(PyObject *fdobj, int (*func)(int)) in posix_fildes() argument858 fd = PyObject_AsFileDescriptor(fdobj); in posix_fildes()1836 posix_fchdir(PyObject *self, PyObject *fdobj) in posix_fchdir() argument1838 return posix_fildes(fdobj, fchdir); in posix_fchdir()2032 posix_fsync(PyObject *self, PyObject *fdobj) in posix_fsync() argument2034 return posix_fildes(fdobj, fsync); in posix_fsync()2050 posix_fdatasync(PyObject *self, PyObject *fdobj) in posix_fdatasync() argument2052 return posix_fildes(fdobj, fdatasync); in posix_fdatasync()