Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/asyncio/
Dwindows_utils.py81 class PipeHandle: class
162 self.stdin = PipeHandle(stdin_wh)
164 self.stdout = PipeHandle(stdout_rh)
166 self.stderr = PipeHandle(stderr_rh)
Dwindows_events.py278 pipe = windows_utils.PipeHandle(h)
662 return windows_utils.PipeHandle(handle)
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_windows_utils.py64 p = windows_utils.PipeHandle(h)
98 self.assertIsInstance(f, windows_utils.PipeHandle)
/external/python/cpython3/Modules/
Doverlapped.c1455 HANDLE PipeHandle; in overlapped_ConnectPipe() local
1465 PipeHandle = CreateFileW(Address, in overlapped_ConnectPipe() local
1472 if (PipeHandle == INVALID_HANDLE_VALUE) in overlapped_ConnectPipe()
1474 return Py_BuildValue(F_HANDLE, PipeHandle); in overlapped_ConnectPipe()