Home
last modified time | relevance | path

Searched refs:stdin (Results 1 – 14 of 14) sorted by relevance

/build/soong/ui/terminal/
Dstdio.go42 stdin io.Reader member
47 func NewCustomStdio(stdin io.Reader, stdout, stderr io.Writer) StdioInterface {
48 return customStdio{stdin, stdout, stderr}
51 func (c customStdio) Stdin() io.Reader { return c.stdin }
/build/soong/cmd/run_with_timeout/
Drun_with_timeout.go91 stdin io.Reader, stdout, stderr io.Writer) error {
101 cmd.Stdin, cmd.Stdout, cmd.Stderr = stdin, concurrentStdout, concurrentStderr
134 …onTimeoutCmd.Stdin, onTimeoutCmd.Stdout, onTimeoutCmd.Stderr = stdin, concurrentStdout, concurrent…
Drun_with_timeout_test.go30 stdin io.Reader
81 …t.args.command, tt.args.args, tt.args.timeout, tt.args.onTimeoutCmd, tt.args.stdin, stdout, stderr)
/build/make/tools/
Dnormalize_path.py28 for line in sys.stdin:
Dextract_kernel.py118 sp = subprocess.Popen(["gzip", "-d", "-c"], stdin=subprocess.PIPE,
131 sp = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
202 default=to_bytes_io(sys.stdin))
Dfilter-product-graph.py36 lines = sys.stdin.readlines()
Dproduct_debug.py79 lines = sys.stdin.readlines()
/build/make/tools/fs_config/
Dfs_config.c114 while (fgets(buffer, 1023, stdin) != NULL) { in main()
/build/make/tools/signtos/
DSignTos.java80 BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); in readPassword() local
82 return stdin.readLine(); in readPassword()
/build/soong/scripts/
Djsonmodify.py108 obj = json.load(sys.stdin, object_pairs_hook=collections.OrderedDict)
/build/make/tools/releasetools/
Dcheck_target_files_signatures.py105 stdin=subprocess.PIPE,
168 stdin=subprocess.PIPE,
Dcommon.py1532 p2 = Run(["lz4", "-l", "-12", "--favor-decSpeed"], stdin=p1.stdout,
1535 p2 = Run(["minigzip"], stdin=p1.stdout, stdout=ramdisk_img.file.fileno())
2149 stdin=devnull.fileno(),
2159 stdin=devnull.fileno(),
2288 proc = Run(cmd, stdin=subprocess.PIPE)
3819 p2 = Run(['minigzip', '-d'], stdin=input_stream.fileno(),
Dmerge_target_files.py1018 stdin=find_process.stdout,
/build/make/tools/signapk/src/com/android/signapk/
DSignApk.java208 BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); in readPassword() local
210 return stdin.readLine(); in readPassword()