Home
last modified time | relevance | path

Searched refs:stdin (Results 1 – 12 of 12) 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/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))
/build/soong/cmd/run_with_timeout/
Drun_with_timeout_test.go31 stdin io.Reader
84 …t.args.command, tt.args.args, tt.args.timeout, tt.args.onTimeoutCmd, tt.args.stdin, stdout, stderr)
Drun_with_timeout.go91 stdin io.Reader, stdout, stderr io.Writer) error {
101 cmd.Stdin, cmd.Stdout, cmd.Stderr = stdin, concurrentStdout, concurrentStderr
137 …onTimeoutCmd.Stdin, onTimeoutCmd.Stdout, onTimeoutCmd.Stderr = stdin, concurrentStdout, concurrent…
/build/make/tools/fs_config/
Dfs_config.c86 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.py128 … obj = json.load(sys.stdin, object_pairs_hook=collections.OrderedDict, cls=JSONWithCommentsDecoder)
/build/make/tools/releasetools/
Dcheck_target_files_signatures.py93 stdin=subprocess.PIPE,
156 stdin=subprocess.PIPE,
Dcommon.py1674 p2 = Run(["lz4", "-l", "-12", "--favor-decSpeed"], stdin=p1.stdout,
1677 p2 = Run(["gzip"], stdin=p1.stdout, stdout=ramdisk_img.file.fileno())
2408 stdin=devnull.fileno(),
2418 stdin=devnull.fileno(),
2558 proc = Run(cmd, stdin=subprocess.PIPE)
4130 p2 = Run(['gzip', '-d'], stdin=input_stream.fileno(),
/build/make/tools/releasetools/merge/
Dmerge_target_files.py423 stdin=find_process.stdout,
/build/make/tools/signapk/src/com/android/signapk/
DSignApk.java215 BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); in readPassword() local
217 String result = stdin.readLine(); in readPassword()