Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dfileutils.h169 PyAPI_FUNC(int) _Py_open_osfhandle_noraise(void *handle, int flags);
/third_party/python/Modules/_io/
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()
/third_party/python/Python/
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()
/third_party/python/Modules/
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()