Searched refs:fd_high (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython3/Modules/clinic/
H A Dposixmodule.c.h3372 "closerange($module, fd_low, fd_high, /)\n"
3375 "Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
3381 os_closerange_impl(PyObject *module, int fd_low, int fd_high);
3388 int fd_high; local
3391 &fd_low, &fd_high)) {
3394 return_value = os_closerange_impl(module, fd_low, fd_high);
/external/python/cpython3/Modules/
H A Dposixmodule.c7631 fd_high: int
7634 Closes all file descriptors in [fd_low, fd_high), ignoring errors.
7638 os_closerange_impl(PyObject *module, int fd_low, int fd_high) argument
7644 for (i = Py_MAX(fd_low, 0); i < fd_high; i++)

Completed in 207 milliseconds