Home | History | Annotate | Download | only in multiprocessing

Lines Matching defs:Pipe

35 __all__ = [ 'Client', 'Listener', 'Pipe' ]
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
122 connections, or for a Windows named pipe.
141 Accept a connection on the bound socket or named pipe of `self`.
153 Close the bound socket or named pipe of `self`.
183 def Pipe(duplex=True):
185 Returns pair of connection objects at either end of a pipe
196 fd1, fd2 = os.pipe()
205 def Pipe(duplex=True):
207 Returns pair of connection objects at either end of a pipe
333 Representation of a named pipe
382 Return a connection object connected to the pipe given by `address`