Home | History | Annotate | Download | only in Lib

Lines Matching refs:bufsize

40     def __init__(self, cmd, capturestderr=False, bufsize=-1):
47 process. The default is false. If the 'bufsize' parameter is
65 self.tochild = os.fdopen(p2cwrite, 'w', bufsize)
67 self.fromchild = os.fdopen(c2pread, 'r', bufsize)
70 self.childerr = os.fdopen(errout, 'r', bufsize)
119 def __init__(self, cmd, bufsize=-1):
132 self.tochild = os.fdopen(p2cwrite, 'w', bufsize)
134 self.fromchild = os.fdopen(c2pread, 'r', bufsize)
141 def popen2(cmd, bufsize=-1, mode='t'):
146 'bufsize' is specified, it sets the buffer size for the I/O pipes. The
148 w, r = os.popen2(cmd, mode, bufsize)
151 def popen3(cmd, bufsize=-1, mode='t'):
156 'bufsize' is specified, it sets the buffer size for the I/O pipes. The
158 w, r, e = os.popen3(cmd, mode, bufsize)
161 def popen4(cmd, bufsize=-1, mode='t'):
166 'bufsize' is specified, it sets the buffer size for the I/O pipes. The
168 w, r = os.popen4(cmd, mode, bufsize)
171 def popen2(cmd, bufsize=-1, mode='t'):
176 'bufsize' is specified, it sets the buffer size for the I/O pipes. The
178 inst = Popen3(cmd, False, bufsize)
181 def popen3(cmd, bufsize=-1, mode='t'):
186 'bufsize' is specified, it sets the buffer size for the I/O pipes. The
188 inst = Popen3(cmd, True, bufsize)
191 def popen4(cmd, bufsize=-1, mode='t'):
196 'bufsize' is specified, it sets the buffer size for the I/O pipes. The
198 inst = Popen4(cmd, bufsize)