Home
last modified time | relevance | path

Searched refs:stdout (Results 376 - 400 of 3069) sorted by relevance

1...<<11121314151617181920>>...123

/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dfakepng.c29 fwrite(chunk, length, 1, stdout); in put_chunk()
60 fwrite(signature, sizeof signature, 1, stdout); in main()
/third_party/skia/infra/bots/recipe_modules/flavor/resources/
H A Dios_debug_cmd.py20 logp = subprocess.Popen(['idevicesyslog'], stdout=subprocess.PIPE, bufsize=-1)
25 out = logp.stdout.read().decode('utf-8')
/third_party/glslang/
H A Dbuild_info.py26 usage = """{} emits a string to stdout or file with project version information.
49 ommitted then the string is printed to stdout.
78 stdout=subprocess.PIPE,
80 (stdout, _) = p.communicate()
83 return stdout
/third_party/astc-encoder/Test/
H A Dastc_test_competitive.py56 return float(LOG_PATTERN.search(result.stdout).group(1))
62 return float(LOG_PATTERN.search(result.stdout).group(1))
124 print(ex.stdout)
/third_party/mbedtls/tests/scripts/
H A Dtest_psa_compliance.py93 bufsize=1, stdout=subprocess.PIPE, universal_newlines=True)
103 if proc.stdout is None:
106 for line in proc.stdout:
/third_party/mesa3d/bin/
H A Dcommit_in_branch.py22 use_colors = sys.stdout.isatty()
43 stdout=subprocess.DEVNULL,
54 stdout=subprocess.DEVNULL,
125 help='colorize output (default: true if stdout is a terminal)')
/third_party/mbedtls/programs/pkey/
H A Drsa_decrypt.c65 fflush(stdout); in main()
84 fflush(stdout); in main()
145 fflush(stdout); in main()
H A Drsa_sign.c61 fflush(stdout); in main()
96 fflush(stdout); in main()
108 fflush(stdout); in main()
/third_party/node/lib/
H A Dwasi.js73 const { stdin = 0, stdout = 1, stderr = 2 } = options;
75 validateInt32(stdout, 'options.stdout', 0);
77 const stdio = [stdin, stdout, stderr];
/third_party/node/test/parallel/
H A Dtest-repl-options.js109 assert.strictEqual(r4.output, process.stdout);
123 child.stdout.setEncoding('utf8');
124 child.stdout.on('data', (data) => {
/third_party/node/tools/configure.d/
H A Dnodedownload.py31 sys.stdout.write(' Fetch: %c %sMB total, %sMB downloaded \r' %
39 sys.stdout.write(' <%s>\nConnecting...\r' % url)
40 sys.stdout.flush()
/third_party/node/test/abort/
H A Dtest-addon-uv-handle-leak.js42 assert.strictEqual(child.stdout.toString(), '');
65 const lddOut = spawnSync('ldd', [process.execPath]).stdout;
70 const nmOut = spawnSync('nm', ['-D', libcInfo[0][1]]).stdout;
/third_party/node/tools/
H A Dtest-npm-package.js16 * the stdout output of the test script will be written to that file.
95 testChild.stdout.pipe(process.stdout);
100 testChild.stdout.pipe(logStream);
/third_party/libfuse/test/
H A Dtest_ctests.py41 subprocess.check_call(cmdline, stdout=output_checker.fd, stderr=output_checker.fd)
58 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd,
88 mount_process = subprocess.Popen(cmdline, stdout=output_checker.fd,
/third_party/node/deps/v8/
H A D.ycm_extra_conf.py128 stdout=subprocess.PIPE)
129 stdout, stderr = p.communicate()
136 for line in reversed(stdout.decode('utf-8').splitlines()):
/third_party/vk-gl-cts/external/amber/src/tools/
H A Dcopyright.py102 sys.stdout.write(copyright)
103 sys.stdout.write(licensed)
105 sys.stdout.write(line)
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Dcdjpeg.c119 * Routines to establish binary I/O mode for stdin and stdout.
144 FILE *output_file = stdout; in write_stdout()
147 setmode(fileno(stdout), O_BINARY); in write_stdout()
150 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) { in write_stdout()
151 fprintf(stderr, "Cannot reopen stdout\n"); in write_stdout()
/third_party/skia/third_party/externals/harfbuzz/test/shape/
H A Drun-tests.py10 return process.stdout.readline().decode ("utf-8").strip ()
22 stdout=subprocess.PIPE,
23 stderr=sys.stdout)
/third_party/toybox/toys/other/
H A Dxxd.c21 Hexdump a file to stdout. If no file is listed, copy from stdin.
114 fputc(tmp & 0xff, stdout); in do_xxd_reverse()
126 if (fseek(stdout, pos, SEEK_SET) != 0) { in do_xxd_reverse()
147 fputc((n1 << 4) | (n2 & 0xf), stdout); in do_xxd_reverse()
/third_party/python/Lib/test/
H A Dtest_repl.py16 def spawn_repl(*args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **kw):
41 stdout=stdout, stderr=stderr,
79 # Exit code 120: Py_FinalizeEx() failed to flush stdout and stderr.
/third_party/skia/infra/bots/recipe_modules/flavor/
H A Dssh.py61 'cat', path, stdout=self.m.raw_io.output(),
63 return rv.stdout.decode('utf-8').rstrip() if rv and rv.stdout else None
/third_party/spirv-tools/utils/
H A Dupdate_build_version.py72 stdout=subprocess.PIPE,
75 (stdout, _) = p.communicate()
80 return p.returncode == 0, stdout
/third_party/node/deps/v8/tools/
H A Dgenerate-runtime-call-stats.py51 help="output benchmark runs to stdout")
77 help="write table to FILE rather stdout")
220 stdout = ""
224 stdout=subprocess.PIPE,
229 for line in iter(proc.stdout.readline, ""):
230 stdout += line
235 proc.stdout.close()
241 print(stdout)
470 write_output(sys.stdout, table, headers, args.repeats, args.format)
/third_party/python/Tools/scripts/
H A Dstable_abi.py466 proc = subprocess.run(args, stdout=subprocess.PIPE, universal_newlines=True)
468 sys.stdout.write(proc.stdout)
471 stdout = proc.stdout.rstrip()
472 if not stdout:
475 for line in stdout.splitlines():
/third_party/toybox/toys/pending/
H A Dtelnetd.c134 if (ch == 's') fputs(u.sysname, stdout); in write_issue()
135 if (ch == 'n'|| ch == 'h') fputs(u.nodename, stdout); in write_issue()
136 if (ch == 'r') fputs(u.release, stdout); in write_issue()
137 if (ch == 'm') fputs(u.machine, stdout); in write_issue()
138 if (ch == 'l') fputs(tty, stdout); in write_issue()
141 fputs("\n\r\0", stdout); in write_issue()
142 } else fputc(ch, stdout); in write_issue()

Completed in 8 milliseconds

1...<<11121314151617181920>>...123