Home
last modified time | relevance | path

Searched refs:stdout (Results 126 - 150 of 1885) sorted by relevance

12345678910>>...76

/third_party/mbedtls/programs/pkey/
H A Decdsa.c114 fflush(stdout); in main()
125 fflush(stdout); in main()
144 fflush(stdout); in main()
159 fflush(stdout); in main()
180 fflush(stdout); in main()
196 fflush(stdout); in main()
H A Decdh_curve25519.c71 fflush(stdout); in main()
89 fflush(stdout); in main()
112 fflush(stdout); in main()
137 fflush(stdout); in main()
153 fflush(stdout); in main()
179 fflush(stdout); in main()
H A Ddh_server.c84 fflush(stdout); in main()
98 fflush(stdout); in main()
136 fflush(stdout); in main()
158 fflush(stdout); in main()
175 fflush(stdout); in main()
226 fflush(stdout); in main()
245 fflush(stdout); in main()
266 fflush(stdout); in main()
/third_party/mbedtls/tests/scripts/
H A Dpsa_collect_statuses.py68 sys.stdout.write('{} {}\n'.format(function, name))
83 stdout=sys.stderr)
86 stdout=devnull, stderr=devnull)
89 stdout=sys.stderr)
92 stdout=sys.stderr)
99 stdout=sys.stderr)
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
H A Dv8_commands.py107 def __init__(self, exit_code, stdout, pid):
109 self.stdout = stdout
124 stdout=subprocess.PIPE,
144 stdout, _ = process.communicate()
152 stdout,
/third_party/node/test/wasi/
H A Dtest-wasi.js59 assert.strictEqual(child.stdout.toString(), options.stdout || '');
70 runWASI({ test: 'freopen', stdout: `hello from input2.txt${checkoutEOL}` });
88 runWASI({ test: 'read_file', stdout: `hello from input.txt${checkoutEOL}` });
91 stdout: `hello from input.txt${checkoutEOL}hello from input.txt${checkoutEOL}`,
99 runWASI({ test: 'stdin', stdin: 'hello world', stdout: 'hello world' });
/third_party/node/test/common/
H A Dchild_process.js40 console.log('child stdout');
67 stdout: stdoutCheck,
83 console.error(`${tag} --- stdout ---`);
84 console.error(stdoutStr === undefined ? child.stdout.toString() : stdoutStr);
102 stdoutStr = child.stdout.toString();
105 failures.push(`- stdout ${reason}`);
111 return { child, stderr: stderrStr, stdout: stdoutStr };
/third_party/libabigail/
H A Dgen-changelog.py95 stdout=subprocess.PIPE,
100 for lin in p.stdout.readlines():
128 stdout=subprocess.PIPE,
130 for lin in p.stdout:
140 stdout=subprocess.PIPE,
142 for lin in p.stdout:
/third_party/python/Lib/distutils/tests/
H A Dtest_cmd.py108 with captured_stdout() as stdout:
110 stdout.seek(0)
111 self.assertEqual(stdout.read(), '')
115 with captured_stdout() as stdout:
117 stdout.seek(0)
118 self.assertEqual(stdout.read(), 'xxx\n')
H A Dtest_log.py18 stdout = io.TextIOWrapper(io.BytesIO(),
24 with swap_attr(sys, 'stdout', stdout), \
31 stdout.seek(0)
32 self.assertEqual(stdout.read().rstrip(),
/third_party/python/Doc/includes/
H A Dmp_pool.py128 sys.stdout.flush()
130 sys.stdout.write('\n\t%s' % res.get(0.02))
133 sys.stdout.write('.')
140 sys.stdout.flush()
142 sys.stdout.write('\n\t%s' % it.next(0.02))
146 sys.stdout.write('.')
/third_party/openssl/demos/digest/
H A DEVP_MD_demo.c150 fprintf(stdout, "%02x", digest_value[j]); in demonstrate_digest()
152 fprintf(stdout, "\n"); in demonstrate_digest()
155 fprintf(stdout, "Digest length(%d) not equal to known answer length(%lu).\n", in demonstrate_digest()
159 fprintf(stdout, "%02x", known_answer[j] ); in demonstrate_digest()
161 fprintf(stdout, "\nDigest does not match known answer\n"); in demonstrate_digest()
163 fprintf(stdout, "Digest computed properly.\n"); in demonstrate_digest()
/third_party/skia/third_party/externals/dawn/scripts/
H A Dperf_test_runner.py111 stdout=subprocess.PIPE,
140 sys.stdout.write("%s: %.2f" % (metric, score))
144 sys.stdout.write(", mean: %.2f" % mean(scores))
145 sys.stdout.write(", variation: %.2f%%" %
150 sys.stdout.write(", truncated mean: %.2f" %
152 sys.stdout.write(", variation: %.2f%%" %
/third_party/spirv-tools/tools/
H A Dio.h29 #define SET_STDOUT_TO_BINARY_MODE() _setmode(_fileno(stdout), O_BINARY);
30 #define SET_STDOUT_TO_TEXT_MODE() _setmode(_fileno(stdout), O_TEXT);
31 #define SET_STDOUT_MODE(mode) _setmode(_fileno(stdout), mode);
129 // string or "-", stdout will be set to the given mode.
139 fp_ = stdout; in OutputFile()
146 if (fp_ == stdout) { in ~OutputFile()
147 fflush(stdout); in ~OutputFile()
/third_party/mesa3d/src/intel/compiler/
H A Dintel_clc.c326 print_usage(argv[0], stdout); in main()
538 fprintf(stdout, "kernel info:\n"); in main()
539 fprintf(stdout, " uses_barrier : %u\n", kernel.prog_data.uses_barrier); in main()
540 fprintf(stdout, " uses_num_work_groups : %u\n", kernel.prog_data.uses_num_work_groups); in main()
541 fprintf(stdout, " uses_inline_data : %u\n", kernel.prog_data.uses_inline_data); in main()
542 fprintf(stdout, " local_size : %ux%ux%u\n", in main()
546 fprintf(stdout, " curb_read_length : %u\n", kernel.prog_data.base.curb_read_length); in main()
547 fprintf(stdout, " total_scratch : %u\n", kernel.prog_data.base.total_scratch); in main()
548 fprintf(stdout, " total_shared : %u\n", kernel.prog_data.base.total_shared); in main()
549 fprintf(stdout, " program_siz in main()
[all...]
/third_party/node/test/parallel/
H A Dtest-tls-enable-trace-cli.js25 let stdout = '';
27 child.stdout.setEncoding('utf8');
29 child.stdout.on('data', (data) => stdout += data);
37 assert.strictEqual(stdout.trim(), '');
/third_party/node/test/sequential/
H A Dtest-net-GH-5504.js81 wrap(s.stdout, process.stdout, 'SERVER 1>');
84 s.stdout.once('data', common.mustCall(function() {
87 wrap(c.stdout, process.stdout, 'CLIENT 1>');
/third_party/node/deps/openssl/openssl/fuzz/
H A Dbignum.c82 BN_print_fp(stdout, b1); in FuzzerTestOneInput()
84 BN_print_fp(stdout, b2); in FuzzerTestOneInput()
86 BN_print_fp(stdout, b3); in FuzzerTestOneInput()
88 BN_print_fp(stdout, b4); in FuzzerTestOneInput()
90 BN_print_fp(stdout, b5); in FuzzerTestOneInput()
/third_party/openssl/fuzz/
H A Dbignum.c82 BN_print_fp(stdout, b1); in FuzzerTestOneInput()
84 BN_print_fp(stdout, b2); in FuzzerTestOneInput()
86 BN_print_fp(stdout, b3); in FuzzerTestOneInput()
88 BN_print_fp(stdout, b4); in FuzzerTestOneInput()
90 BN_print_fp(stdout, b5); in FuzzerTestOneInput()
/third_party/pcre2/pcre2/src/
H A Dpcre2grep.c180 /* Under Windows, we have to set stdout to be binary, so that it does not
182 any messages written to stdout must have \r\n as their line terminator. This is
933 return isatty(fileno(stdout)); in is_stdout_tty()
950 if (do_colour) fprintf(stdout, "%c[%sm", 0x1b, colour_string); in print_match()
951 FWRITE_IGNORE(buf, 1, length, stdout); in print_match()
952 if (do_colour) fprintf(stdout, "%c[0m", 0x1b); in print_match()
1070 return _isatty(_fileno(stdout)); in is_stdout_tty()
1088 if (do_ansi) fprintf(stdout, "%c[%sm", 0x1b, colour_string); in print_match()
1091 FWRITE_IGNORE(buf, 1, length, stdout); in print_match()
1094 if (do_ansi) fprintf(stdout, " in print_match()
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A DInfoSink.cpp58 fprintf(stdout, "%s", s); in append()
78 fprintf(stdout, "%c", c); in append()
94 fprintf(stdout, "%s", t.c_str()); in append()
110 fprintf(stdout, "%s", t.c_str()); in append()
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
H A Ddebug_main.cc33 fprintf(stdout, "Usage: %s <input_font_file>\n", program_name); in PrintUsage()
53 fprintf(stdout, "Cannot create subset.\n"); in main()
58 subtly::PrintComparison(stdout, font, new_font); in main()
60 fprintf(stdout, "Went from %d to %d: %lf%% of original\n", in main()
/third_party/backends/frontend/
H A Dscanimage.c353 fputs ("pel", stdout); in print_unit()
356 fputs ("bit", stdout); in print_unit()
359 fputs ("mm", stdout); in print_unit()
362 fputs ("dpi", stdout); in print_unit()
365 fputc ('%', stdout); in print_unit()
368 fputs ("us", stdout); in print_unit()
421 fputs ("[=(", stdout); in print_option()
423 fputs ("auto|", stdout); in print_option()
424 fputs ("yes|no)]", stdout); in print_option()
428 fputc (' ', stdout); in print_option()
[all...]
/third_party/python/Lib/unittest/test/
H A Dtest_result.py778 self._real_out = sys.stdout
782 sys.stdout = self._real_out
792 self.assertIs(real_out, sys.stdout)
797 self.assertIs(real_out, sys.stdout)
809 self.assertIs(real_out, sys.stdout)
814 self.assertIsNot(real_out, sys.stdout)
816 self.assertIsInstance(sys.stdout, io.StringIO)
818 self.assertIsNot(sys.stdout, sys.stderr)
820 out_stream = sys.stdout
838 self.assertIs(sys.stdout, resul
[all...]
/third_party/gn/misc/vim/
H A Dgn-format.py43 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
46 stdout, stderr = p.communicate(input=text)
49 print(stdout, stderr)
52 lines = stdout.split('\n')

Completed in 12 milliseconds

12345678910>>...76