Home
last modified time | relevance | path

Searched refs:stdout (Results 251 - 275 of 3551) sorted by relevance

1...<<11121314151617181920>>...143

/third_party/skia/tools/skqp/
H A Dcut_release.py33 sys.stdout.write(name + ' ')
34 sys.stdout.flush()
47 sys.stdout.write('\n')
164 sys.stdout.write(ASSETS + '/files.checksum\n')
165 sys.stdout.write(ASSETS + '/skqp/rendertests.txt\n')
166 sys.stdout.write(ASSETS + '/skqp/unittests.txt\n')
/third_party/vixl/tools/
H A Dclang_format.py48 is_output_redirected = not sys.stdout.isatty()
115 stdout = temp_file, stderr = subprocess.STDOUT)
123 stdout = subprocess.PIPE, stderr = subprocess.STDOUT)
128 stdin = p_diff.stdout,
129 stdout = subprocess.PIPE, stderr = subprocess.STDOUT)
139 subprocess.run(cmd_format, stdout=temp_file, stderr=subprocess.STDOUT)
/third_party/skia/infra/bots/recipe_modules/flavor/
H A Dios.py66 stdout=self.m.raw_io.output())
68 image_info.stdout.decode('utf-8').strip() if image_info.stdout else '')
165 stdout=self.m.raw_io.output(),
168 return rv.stdout.decode('utf-8').rstrip() if rv and rv.stdout else None
/third_party/libfuse/test/
H A Dutil.py16 proc = subprocess.Popen(cmdline, stdout=subprocess.PIPE,
18 (stdout, _) = proc.communicate(30)
23 for line in stdout.split('\n'):
57 subprocess.call(cmd, stdout=subprocess.DEVNULL,
123 with subprocess.Popen(['which', 'fusermount3'], stdout=subprocess.PIPE,
/third_party/lz4/tests/
H A Dtest-lz4-versions.py31 stdout=subprocess.PIPE,
44 stdout, stderr = git(['tag', '-l', 'r[0-9][0-9][0-9]'])
45 tags = stdout.decode('utf-8').split()
46 stdout, stderr = git(['tag', '-l', 'v[1-9].[0-9].[0-9]'])
47 tags += stdout.decode('utf-8').split()
/third_party/protobuf/conformance/
H A Dconformance_python.py47 sys.stdout = os.fdopen(sys.stdout.fileno(), 'wb', 0)
195 sys.stdout.write(struct.pack("<I", len(serialized_response)))
196 sys.stdout.write(serialized_response)
197 sys.stdout.flush()
/third_party/openssl/demos/cipher/
H A Daesgcm.c85 BIO_dump_fp(stdout, gcm_pt, sizeof(gcm_pt)); in aes_gcm_encrypt()
119 BIO_dump_fp(stdout, outbuf, outlen); in aes_gcm_encrypt()
134 BIO_dump_fp(stdout, outtag, 16); in aes_gcm_encrypt()
161 BIO_dump_fp(stdout, gcm_ct, sizeof(gcm_ct)); in aes_gcm_decrypt()
191 BIO_dump_fp(stdout, outbuf, outlen); in aes_gcm_decrypt()
/third_party/python/Lib/test/
H A Dtest_profile.py151 stdout = sys.stdout
153 sys.stdout = StringIO()
156 sys.stdout = stdout
/third_party/python/Lib/wsgiref/
H A Dsimple_server.py140 stdout = StringIO()
141 print("Hello world!", file=stdout)
142 print(file=stdout)
145 print(k,'=',repr(v), file=stdout)
147 return [stdout.getvalue().encode("utf-8")]
/third_party/ntfs-3g/ntfsprogs/
H A Dntfscmp.c90 fprintf(stdout, PERR_PREFIX, eo); in perr_printf()
92 vfprintf(stdout, fmt, ap); in perr_printf()
94 fprintf(stdout, ": %s", strerror(eo)); in perr_printf()
96 fprintf(stdout, "\n"); in perr_printf()
97 fflush(stdout); in perr_printf()
109 fprintf(stdout, NERR_PREFIX); in err_printf()
111 vfprintf(stdout, fmt, ap); in err_printf()
113 fflush(stdout); in err_printf()
128 fprintf(stdout, NERR_PREFIX); in err_exit()
130 vfprintf(stdout, fm in err_exit()
[all...]
/third_party/node/tools/
H A Dtest.py127 if failure.output.stdout:
128 output += ["--- stdout ---"]
129 output += [failure.output.stdout.strip()]
282 sys.stdout.flush()
303 sys.stdout.write('\n')
306 sys.stdout.write('C')
307 sys.stdout.flush()
309 sys.stdout.write('T')
310 sys.stdout.flush()
312 sys.stdout
[all...]
/kernel/linux/linux-5.10/scripts/clang-tools/
H A Drun-clang-tools.py55 stdout=subprocess.PIPE,
59 sys.stderr.buffer.write(p.stdout)
76 os.dup2(devnull, sys.stdout.fileno())
/third_party/ltp/lib/tests/
H A Dtrerrno.c49 /* redirect stdout to file */ in main()
50 stdout_fd = dup(fileno(stdout)); in main()
52 TEST(dup2(fd, fileno(stdout))); in main()
62 /* restore stdout */ in main()
63 TEST(dup2(stdout_fd, fileno(stdout))); in main()
/third_party/node/test/parallel/
H A Dtest-child-process-stdio-big-write-end.js47 child.stdout.setEncoding('ascii');
48 child.stdout.on('data', mustCallAtLeast((c) => {
51 child.stdout.on('end', mustCall(() => {
H A Dtest-child-process-windows-hide.js31 assert.strictEqual(child.stdout.toString().trim(), '42');
45 const callback = common.mustSucceed((stdout, stderr) => {
46 assert.strictEqual(stdout.trim(), '42');
/third_party/node/test/pummel/
H A Dtest-tls-throttle.js34 process.stdout.write('build body...');
36 process.stdout.write('done\n');
56 process.stdout.write('.');
/third_party/node/test/wasi/
H A Dtest-wasi-stdio.js11 const stdoutFile = join(tmpdir.path, 'stdout.txt');
19 const stdout = openSync(stdoutFile, 'a');
21 const wasi = new WASI({ stdin, stdout, stderr, returnOnExit: true });
29 closeSync(stdout);
/third_party/python/Tools/freeze/
H A Dwinmakemakefile.py46 save = sys.stdout
48 sys.stdout = outfp
51 sys.stdout = save
/third_party/skia/third_party/externals/spirv-tools/test/tools/
H A Dexpect_unittest.py53 stdout=b'0abc1',
65 stdout=b'ab',
77 stdout=b'',
H A Dexpect.py92 """Mixin class for checking that there is no output on stdout."""
95 if status.stdout:
96 return False, 'Non empty stdout: {out}\n'.format(out=status.stdout)
111 stdout and stderr."""
246 stdout/stderr."""
261 stdout/stderr."""
276 stdout/stderr."""
293 stdout/stderr, and the disassmbly contains a specified substring per
308 stdout
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/
H A Dexpect_unittest.py53 stdout=b'0abc1',
65 stdout=b'ab',
77 stdout=b'',
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_options.c54 fprintf (stdout, "running test: %s ", test_name); in test_wrap()
58 fprintf (stdout, "[pass]\n"); in test_wrap()
62 fprintf (stdout, "[fail]\n"); in test_wrap()
/third_party/skia/third_party/externals/harfbuzz/util/
H A Doutput-options.hh39 if (out_fp && out_fp != stdout) in ~output_options_t()
58 {"output-file", 'o', 0, G_OPTION_ARG_STRING, &this->output_file, "Set output file-name (default: stdout)","filename"}, in add_options()
97 setmode (fileno (stdout), O_BINARY); in post_parse()
99 out_fp = stdout; in post_parse()
/third_party/skia/infra/bots/recipe_modules/flavor/resources/
H A Dwin_ssh_cmd.py31 proc = subprocess.Popen(ssh_cmd, stdout=subprocess.PIPE)
32 for line in iter(proc.stdout.readline, ''):
39 sys.stdout.flush()
/third_party/spirv-tools/test/tools/
H A Dexpect_unittest.py53 stdout=b'0abc1',
65 stdout=b'ab',
77 stdout=b'',

Completed in 10 milliseconds

1...<<11121314151617181920>>...143