Searched refs:get_osfhandle (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | msvcrt.rst | 85 .. function:: get_osfhandle(fd) 90 .. audit-event:: msvcrt.get_osfhandle fd msvcrt.get_osfhandle
|
/external/python/cpython2/Lib/ |
D | subprocess.py | 515 p2cread = msvcrt.get_osfhandle(stdin) 518 p2cread = msvcrt.get_osfhandle(stdin.fileno()) 532 c2pwrite = msvcrt.get_osfhandle(stdout) 535 c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) 551 errwrite = msvcrt.get_osfhandle(stderr) 554 errwrite = msvcrt.get_osfhandle(stderr.fileno())
|
/external/python/cpython3/Lib/ |
D | subprocess.py | 1257 p2cread = msvcrt.get_osfhandle(self._get_devnull()) 1259 p2cread = msvcrt.get_osfhandle(stdin) 1262 p2cread = msvcrt.get_osfhandle(stdin.fileno()) 1275 c2pwrite = msvcrt.get_osfhandle(self._get_devnull()) 1277 c2pwrite = msvcrt.get_osfhandle(stdout) 1280 c2pwrite = msvcrt.get_osfhandle(stdout.fileno()) 1295 errwrite = msvcrt.get_osfhandle(self._get_devnull()) 1297 errwrite = msvcrt.get_osfhandle(stderr) 1300 errwrite = msvcrt.get_osfhandle(stderr.fileno())
|
/external/python/cpython2/Doc/library/ |
D | msvcrt.rst | 75 .. function:: get_osfhandle(fd)
|
/external/python/cpython2/Lib/multiprocessing/ |
D | forking.py | 254 rhandle = duplicate(msvcrt.get_osfhandle(rfd), inheritable=True)
|
/external/python/cpython2/Lib/test/ |
D | test_fileio.py | 374 self.assertRaises(IOError, msvcrt.get_osfhandle, make_bad_fd())
|
D | test_os.py | 831 rslt = PeekNamedPipe(msvcrt.get_osfhandle(proc.stdout.fileno()),
|
D | test_multiprocessing.py | 1792 fd = msvcrt.get_osfhandle(fd)
|
/external/rust/crates/libc/src/windows/ |
D | mod.rs | 470 pub fn get_osfhandle(fd: ::c_int) -> ::intptr_t; in get_osfhandle() function
|
/external/python/cpython3/Lib/test/ |
D | test_fileio.py | 469 self.assertRaises(OSError, msvcrt.get_osfhandle, make_bad_fd())
|
D | test_subprocess.py | 3290 handles.append(msvcrt.get_osfhandle(fd))
|
D | test_os.py | 2276 rslt = PeekNamedPipe(msvcrt.get_osfhandle(proc.stdout.fileno()),
|
D | _test_multiprocessing.py | 3204 fd = msvcrt.get_osfhandle(fd)
|
/external/python/cpython3/Lib/asyncio/ |
D | windows_events.py | 613 msvcrt.get_osfhandle(file.fileno()),
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.1rc1.rst | 1302 Avoid crash in msvcrt.get_osfhandle() when an invalid file descriptor is
|
/external/google-breakpad/src/tools/windows/dump_syms/testdata/ |
D | dump_syms_regtest64.sym | 3304 FUNC 815c 74 0 get_osfhandle
|
/external/python/cpython3/Misc/ |
D | HISTORY | 12352 - Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file 31498 These include locking(), setmode(), get_osfhandle(), set_osfhandle(), and
|
/external/python/cpython2/Misc/ |
D | HISTORY | 14119 These include locking(), setmode(), get_osfhandle(), set_osfhandle(), and
|