Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h3435 os_closerange_impl(PyObject *module, int fd_low, int fd_high);
3441 int fd_low; in os_closerange() local
3445 &fd_low, &fd_high)) { in os_closerange()
3448 return_value = os_closerange_impl(module, fd_low, fd_high); in os_closerange()
/external/python/cpython2/Doc/library/
Dos.rst624 .. function:: closerange(fd_low, fd_high)
626 Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive),
629 for fd in xrange(fd_low, fd_high):
/external/python/cpython3/Doc/library/
Dos.rst697 .. function:: closerange(fd_low, fd_high)
699 Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive),
702 for fd in range(fd_low, fd_high):
/external/python/cpython3/Modules/
Dposixmodule.c7802 os_closerange_impl(PyObject *module, int fd_low, int fd_high) in os_closerange_impl() argument
7808 for (i = Py_MAX(fd_low, 0); i < fd_high; i++) in os_closerange_impl()