Searched refs:pipesize (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_fcntl.py | 199 # Get the default pipesize with F_GETPIPE_SZ 201 pipesize = pipesize_default // 2 # A new value to detect change. 202 if pipesize < 512: # the POSIX minimum 204 'default pipesize too small to perform test.') 205 fcntl.fcntl(test_pipe_w, fcntl.F_SETPIPE_SZ, pipesize) 207 pipesize)
|
H A D | test_subprocess.py | 715 # Get the default pipesize with F_GETPIPE_SZ 720 pipesize = pipesize_default // 2 721 if pipesize < 512: # the POSIX minimum 723 'default pipesize too small to perform test.') 729 stderr=subprocess.PIPE, pipesize=pipesize) 734 pipesize) 754 stderr=subprocess.PIPE, pipesize=-1) 767 # code using pipesize=-1 should not crash.
|
/third_party/python/Lib/ |
H A D | subprocess.py | 814 encoding=None, errors=None, text=None, umask=-1, pipesize=-1, 837 if pipesize is None: 838 pipesize = -1 # Restore default 839 if not isinstance(pipesize, int): 840 raise TypeError("pipesize must be an integer") 866 self.pipesize = pipesize 1700 if self.pipesize > 0 and hasattr(fcntl, "F_SETPIPE_SZ"): 1701 fcntl.fcntl(p2cwrite, fcntl.F_SETPIPE_SZ, self.pipesize) 1715 if self.pipesize > [all...] |
/third_party/libfuse/lib/ |
H A D | fuse_lowlevel.c | 668 size_t pipesize; local 706 pipesize = pagesize * (iov_count + buf->count + 1) + out->len; 708 if (llp->size < pipesize) { 710 res = fcntl(llp->pipe[0], F_SETPIPE_SZ, pipesize); 720 if (llp->size < pipesize)
|
Completed in 13 milliseconds