Home
last modified time | relevance | path

Searched refs:fdobj (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Modules/
Dposixmodule.c854 posix_fildes(PyObject *fdobj, int (*func)(int)) in posix_fildes() argument
858 fd = PyObject_AsFileDescriptor(fdobj); in posix_fildes()
1836 posix_fchdir(PyObject *self, PyObject *fdobj) in posix_fchdir() argument
1838 return posix_fildes(fdobj, fchdir); in posix_fchdir()
2032 posix_fsync(PyObject *self, PyObject *fdobj) in posix_fsync() argument
2034 return posix_fildes(fdobj, fsync); in posix_fsync()
2050 posix_fdatasync(PyObject *self, PyObject *fdobj) in posix_fdatasync() argument
2052 return posix_fildes(fdobj, fdatasync); in posix_fdatasync()