Home | History | Annotate | Download | only in scripts

Lines Matching refs:stdout

37     stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout
201 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
211 symbol = child.stdout.readline().strip()
214 location = child.stdout.readline().strip()
228 child.stdout.close()
294 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout
333 process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
337 demangled_symbol = process.stdout.readline().strip()
338 process.stdout.close()