Searched refs:_Py_open_osfhandle_noraise (Results 1 – 4 of 4) sorted by relevance
169 PyAPI_FUNC(int) _Py_open_osfhandle_noraise(void *handle, int flags);
369 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()
2256 _Py_open_osfhandle_noraise(void *handle, int flags) in _Py_open_osfhandle_noraise() function2268 int fd = _Py_open_osfhandle_noraise(handle, flags); in _Py_open_osfhandle()
10113 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()