Searched refs:open_osfhandle (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | windows_utils.py | 137 stdin_rfd = msvcrt.open_osfhandle(stdin_rh, os.O_RDONLY) 142 stdout_wfd = msvcrt.open_osfhandle(stdout_wh, 0) 147 stderr_wfd = msvcrt.open_osfhandle(stderr_wh, 0)
|
/external/python/cpython3/Doc/library/ |
D | msvcrt.rst | 75 .. function:: open_osfhandle(handle, flags) 82 .. audit-event:: msvcrt.open_osfhandle handle,flags msvcrt.open_osfhandle
|
/external/python/cpython3/Lib/multiprocessing/ |
D | popen_spawn_win32.py | 54 wfd = msvcrt.open_osfhandle(whandle, 0)
|
D | spawn.py | 109 fd = msvcrt.open_osfhandle(new_handle, os.O_RDONLY)
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | win_utils.py | 63 command_stdout = msvcrt.open_osfhandle(pipe_write_end, 0)
|
/external/python/cpython2/Lib/ |
D | subprocess.py | 412 p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) 414 c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) 416 errread = msvcrt.open_osfhandle(errread.Detach(), 0)
|
/external/python/cpython2/Doc/library/ |
D | msvcrt.rst | 67 .. function:: open_osfhandle(handle, flags)
|
/external/python/cpython2/Lib/multiprocessing/ |
D | forking.py | 375 fd = msvcrt.open_osfhandle(handle, os.O_RDONLY)
|
/external/python/cpython3/Lib/ |
D | subprocess.py | 833 p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0) 835 c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0) 837 errread = msvcrt.open_osfhandle(errread.Detach(), 0)
|
/external/rust/crates/libc/src/windows/ |
D | mod.rs | 472 pub fn open_osfhandle(osfhandle: ::intptr_t, flags: ::c_int) -> ::c_int; in open_osfhandle() function
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1776 fd = msvcrt.open_osfhandle(fd, os.O_WRONLY)
|
/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 3187 fd = msvcrt.open_osfhandle(fd, os.O_WRONLY)
|
/external/python/cpython2/Misc/ |
D | HISTORY | 11790 bogus error return when open_osfhandle() doesn't have the right
|
/external/python/cpython3/Misc/ |
D | HISTORY | 29169 bogus error return when open_osfhandle() doesn't have the right
|