Lines Matching refs:subprocess
32 import subprocess
237 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
264 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
343 p = subprocess.Popen(cmd, stdin=subprocess.PIPE)
365 clang_format = subprocess.Popen(clang_format_cmd, stdin=subprocess.PIPE,
366 stdout=subprocess.PIPE)
374 hash_object = subprocess.Popen(hash_object_cmd, stdin=clang_format.stdout,
375 stdout=subprocess.PIPE)
420 subprocess.check_call(['git', 'diff', old_tree, new_tree, '--'])
446 subprocess.check_call(['git', 'checkout', '--patch', new_tree])
460 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
461 stdin=subprocess.PIPE)