Lines Matching refs:stdin
287 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
288 p.stdin.close()
368 p = subprocess.Popen(cmd, stdin=subprocess.PIPE)
370 p.stdin.write('%s\0' % line)
371 p.stdin.close()
395 git_show = subprocess.Popen(git_show_cmd, stdin=subprocess.PIPE,
397 git_show.stdin.close()
404 clang_format = subprocess.Popen(clang_format_cmd, stdin=clang_format_stdin,
407 clang_format_stdin = clang_format.stdin
415 hash_object = subprocess.Popen(hash_object_cmd, stdin=clang_format.stdout,
504 stdin = kwargs.pop('stdin', '')
510 stdin=subprocess.PIPE)
511 stdout, stderr = p.communicate(input=stdin)