Home
last modified time | relevance | path

Searched refs:pipesize (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/test/
Dtest_fcntl.py201 pipesize = pipesize_default // 2 # A new value to detect change.
202 if pipesize < 512: # the POSIX minimum
205 fcntl.fcntl(test_pipe_w, fcntl.F_SETPIPE_SZ, pipesize)
207 pipesize)
Dtest_subprocess.py702 pipesize = pipesize_default // 2
703 if pipesize < 512: # the POSIX minimum
711 stderr=subprocess.PIPE, pipesize=pipesize)
716 pipesize)
734 stderr=subprocess.PIPE, pipesize=-1)
/third_party/python/Lib/
Dsubprocess.py760 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"):
[all …]
/third_party/python/Doc/library/
Dsubprocess.rst344 encoding=None, errors=None, text=None, pipesize=-1)
647 *pipesize* can be used to change the size of the pipe when
653 The ``pipesize`` parameter was added.
/third_party/python/Misc/NEWS.d/
D3.10.0a2.rst547 Add F_SETPIPE_SZ and F_GETPIPE_SZ to fcntl module. Allow setting pipesize on