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
163 self.stdin = PipeHandle(stdin_wh)
165 self.stdout = PipeHandle(stdout_rh)
167 self.stderr = PipeHandle(stderr_rh)
Dwindows_events.py277 pipe = windows_utils.PipeHandle(h)
594 return windows_utils.PipeHandle(handle)
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_windows_utils.py59 p = windows_utils.PipeHandle(h)
93 self.assertIsInstance(f, windows_utils.PipeHandle)
/external/python/cpython3/Modules/
Doverlapped.c1319 HANDLE PipeHandle; in ConnectPipe() local
1329 PipeHandle = CreateFileW(Address, in ConnectPipe() local
1336 if (PipeHandle == INVALID_HANDLE_VALUE) in ConnectPipe()
1338 return Py_BuildValue(F_HANDLE, PipeHandle); in ConnectPipe()