Home
last modified time | relevance | path

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

/dports/lang/python310/Python-3.10.1/Include/cpython/
H A Dfileutils.h169 PyAPI_FUNC(int) _Py_open_osfhandle_noraise(void *handle, int flags);
/dports/lang/python311/Python-3.11.0a3/Include/cpython/
H A Dfileutils.h163 PyAPI_FUNC(int) _Py_open_osfhandle_noraise(void *handle, int flags);
/dports/devel/py-frozendict/frozendict-2.1.1/frozendict/src/3_10/cpython_src/Include/cpython/
H A Dfileutils.h169 PyAPI_FUNC(int) _Py_open_osfhandle_noraise(void *handle, int flags);
/dports/lang/python310/Python-3.10.1/Modules/_io/
H A Dwinconsoleio.c369 self->fd = _Py_open_osfhandle_noraise(handle, _O_WRONLY | _O_BINARY); in _io__WindowsConsoleIO___init___impl()
371 self->fd = _Py_open_osfhandle_noraise(handle, _O_RDONLY | _O_BINARY); in _io__WindowsConsoleIO___init___impl()
/dports/lang/python311/Python-3.11.0a3/Modules/_io/
H A Dwinconsoleio.c370 self->fd = _Py_open_osfhandle_noraise(handle, _O_WRONLY | _O_BINARY); in _io__WindowsConsoleIO___init___impl()
372 self->fd = _Py_open_osfhandle_noraise(handle, _O_RDONLY | _O_BINARY); in _io__WindowsConsoleIO___init___impl()
/dports/lang/python310/Python-3.10.1/Python/
H A Dfileutils.c2256 _Py_open_osfhandle_noraise(void *handle, int flags) in _Py_open_osfhandle_noraise() function
2268 int fd = _Py_open_osfhandle_noraise(handle, flags); in _Py_open_osfhandle()
/dports/lang/python311/Python-3.11.0a3/Python/
H A Dfileutils.c2513 _Py_open_osfhandle_noraise(void *handle, int flags) in _Py_open_osfhandle_noraise() function
2525 int fd = _Py_open_osfhandle_noraise(handle, flags); in _Py_open_osfhandle()
/dports/lang/python310/Python-3.10.1/Modules/
H A Dposixmodule.c10113 fds[0] = _Py_open_osfhandle_noraise(read, _O_RDONLY); in os_pipe_impl()
10114 fds[1] = _Py_open_osfhandle_noraise(write, _O_WRONLY); in os_pipe_impl()
/dports/lang/python311/Python-3.11.0a3/Modules/
H A Dposixmodule.c10124 fds[0] = _Py_open_osfhandle_noraise(read, _O_RDONLY); in os_pipe_impl()
10125 fds[1] = _Py_open_osfhandle_noraise(write, _O_WRONLY); in os_pipe_impl()