Lines Matching refs:overlapped
32 def pipe(*, duplex=False, overlapped=(True, True), bufsize=BUFSIZE):
33 """Like os.pipe() but with overlapped support and using handles not fds."""
49 if overlapped[0]:
52 if overlapped[1]:
67 ov = _winapi.ConnectNamedPipe(h1, overlapped=True)
82 """Wrapper for an overlapped pipe handle which is vaguely file-object like.
122 # Replacement for subprocess.Popen using overlapped pipe handles
126 """Replacement for subprocess.Popen using overlapped pipe handles.
136 stdin_rh, stdin_wh = pipe(overlapped=(False, True), duplex=True)
141 stdout_rh, stdout_wh = pipe(overlapped=(True, False))
146 stderr_rh, stderr_wh = pipe(overlapped=(True, False))