Lines Matching refs:stdin
259 The return value's `stdin` file object will produce a patch with the
264 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
265 p.stdin.close()
316 return create_tree(filenames, '--stdin')
336 If mode is '--stdin', it must be a list of filenames. If mode is
340 assert mode in ('--stdin', '--index-info')
343 p = subprocess.Popen(cmd, stdin=subprocess.PIPE)
345 p.stdin.write('%s\0' % line)
346 p.stdin.close()
365 clang_format = subprocess.Popen(clang_format_cmd, stdin=subprocess.PIPE,
372 clang_format.stdin.close()
373 hash_object_cmd = ['git', 'hash-object', '-w', '--path='+filename, '--stdin']
374 hash_object = subprocess.Popen(hash_object_cmd, stdin=clang_format.stdout,
455 stdin = kwargs.pop('stdin', '')
461 stdin=subprocess.PIPE)
462 stdout, stderr = p.communicate(input=stdin)