Home | History | Annotate | Download | only in python2.7

Lines Matching refs:bufsize

33 class Popen(args, bufsize=0, executable=None,
63 bufsize, if given, has the same meaning as the corresponding argument
66 (approximately) that size. A negative bufsize means to use the system
68 bufsize is 0 (unbuffered).
302 pipe = os.popen("cmd", mode='r', bufsize)
304 pipe = Popen("cmd", shell=True, bufsize=bufsize, stdout=PIPE).stdout
306 pipe = os.popen("cmd", mode='w', bufsize)
308 pipe = Popen("cmd", shell=True, bufsize=bufsize, stdin=PIPE).stdin
311 (child_stdin, child_stdout) = os.popen2("cmd", mode, bufsize)
313 p = Popen("cmd", shell=True, bufsize=bufsize,
320 child_stderr) = os.popen3("cmd", mode, bufsize)
322 p = Popen("cmd", shell=True, bufsize=bufsize,
330 bufsize)
332 p = Popen("cmd", shell=True, bufsize=bufsize,
342 bufsize)
344 p = Popen(["/bin/ls", "-l"], bufsize=bufsize, stdin=PIPE, stdout=PIPE)
364 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
366 p = Popen(["somestring"], shell=True, bufsize=bufsize
374 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize,
377 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
650 def __init__(self, args, bufsize=0, executable=None,
659 if not isinstance(bufsize, (int, long)):
660 raise TypeError("bufsize must be an integer")
742 self.stdin = os.fdopen(p2cwrite, 'wb', bufsize)
745 self.stdout = os.fdopen(c2pread, 'rU', bufsize)
747 self.stdout = os.fdopen(c2pread, 'rb', bufsize)
750 self.stderr = os.fdopen(errread, 'rU', bufsize)
752 self.stderr = os.fdopen(errread, 'rb', bufsize)