Lines Matching refs:pipesize
760 encoding=None, errors=None, text=None, umask=-1, pipesize=-1): argument
777 if pipesize is None:
778 pipesize = -1 # Restore default
779 if not isinstance(pipesize, int):
806 self.pipesize = pipesize
1595 if self.pipesize > 0 and hasattr(fcntl, "F_SETPIPE_SZ"):
1596 fcntl.fcntl(p2cwrite, fcntl.F_SETPIPE_SZ, self.pipesize)
1609 if self.pipesize > 0 and hasattr(fcntl, "F_SETPIPE_SZ"):
1610 fcntl.fcntl(c2pwrite, fcntl.F_SETPIPE_SZ, self.pipesize)
1623 if self.pipesize > 0 and hasattr(fcntl, "F_SETPIPE_SZ"):
1624 fcntl.fcntl(errwrite, fcntl.F_SETPIPE_SZ, self.pipesize)