Home
last modified time | relevance | path

Searched refs:stdout (Results 176 - 200 of 1885) sorted by relevance

12345678910>>...76

/third_party/node/test/parallel/
H A Dtest-child-process-spawnsync-input.js29 const msgOut = 'this is stdout';
51 assert.deepStrictEqual(ret.stdout, msgOutBuf);
90 assert.strictEqual(ret.stdout.toString('utf8'), options.input);
100 assert.deepStrictEqual(ret.stdout, options.input);
115 assert.deepStrictEqual(ret.stdout, msgBuf);
124 assert.strictEqual(ret.stdout, `${msgOut}\n`);
H A Dtest-http-full-response.js43 exec(command, function(err, stdout, stderr) {
52 let m = /Document Length:\s*(\d+) bytes/i.exec(stdout);
55 m = /Complete requests:\s*(\d+)/i.exec(stdout);
58 m = /HTML transferred:\s*(\d+) bytes/i.exec(stdout);
H A Dtest-stdout-stderr-reading.js5 // Verify that stdout is never read from.
11 throw new Error('reading from stdout!');
28 c1.stdout.setEncoding('utf8');
29 c1.stdout.on('data', function(chunk) {
45 c2.stdout.setEncoding('utf8');
46 c2.stdout.on('data', function(chunk) {
/third_party/node/test/sequential/
H A Dtest-tls-securepair-client.js72 server.stdout.pipe(process.stdout);
73 server.stderr.pipe(process.stdout);
79 server.stdout.setEncoding('utf8');
80 server.stdout.on('data', function(s) {
/third_party/node/deps/v8/tools/ignition/
H A Dlinux_perf_bytecode_annotate.py138 help="output file name (stdout if omitted)",
140 default=sys.stdout,
158 stdout=subprocess.PIPE)
164 stdout=subprocess.PIPE)
167 perf.stdout, program_options.bytecode_name)
171 d8_codegen.stdout, program_options.bytecode_name)
/third_party/nghttp2/tests/
H A Dend_to_end.py62 self.stdout = 'No output'
66 p = subprocess.Popen(full_args, stdout=subprocess.PIPE,
68 self.stdout, self.stderr = p.communicate()
78 self.assertIn('NPN selected the protocol: spdy/3', self.stdout)
100 self.assertIn('NPN selected the protocol: spdy/3', self.stdout)
/third_party/node/deps/npm/node_modules/node-gyp/bin/
H A Dnode-gyp.js35 log.stdout('v%s', prog.version)
37 log.stdout('%s', prog.usage())
85 args.forEach((version) => log.stdout(version))
87 log.stdout('No node development files installed. Use `node-gyp install` to install a version.')
90 log.stdout(...args.slice(1))
/third_party/node/deps/openssl/openssl/fuzz/
H A Dbndiv.c97 BN_print_fp(stdout, b1); in FuzzerTestOneInput()
99 BN_print_fp(stdout, b2); in FuzzerTestOneInput()
101 BN_print_fp(stdout, b3); in FuzzerTestOneInput()
103 BN_print_fp(stdout, b4); in FuzzerTestOneInput()
105 BN_print_fp(stdout, b5); in FuzzerTestOneInput()
/third_party/python/Tools/scripts/
H A Dmd5sum.py31 out = sys.stdout
44 def printsum(filename, out=sys.stdout):
56 def printsumfp(fp, filename, out=sys.stdout):
72 def main(args = sys.argv[1:], out=sys.stdout):
93 sys.exit(main(sys.argv[1:], sys.stdout))
/third_party/openssl/fuzz/
H A Dbndiv.c97 BN_print_fp(stdout, b1); in FuzzerTestOneInput()
99 BN_print_fp(stdout, b2); in FuzzerTestOneInput()
101 BN_print_fp(stdout, b3); in FuzzerTestOneInput()
103 BN_print_fp(stdout, b4); in FuzzerTestOneInput()
105 BN_print_fp(stdout, b5); in FuzzerTestOneInput()
/third_party/python/Lib/test/test_tools/
H A Dtest_pathfix.py20 def pathfix(self, shebang, pathfix_flags, exitcode=0, stdout='', stderr='',
41 if stdout == '' and proc.returncode == 0:
42 stdout = f'{filename}: updating\n'
44 self.assertEqual(proc.stdout.decode(encoding), stdout.replace('\n', os.linesep), proc)
/third_party/python/Lib/test/
H A Dtest_cmd.py201 print(args, file=self.stdout)
210 print('*** Unknown syntax: EOF', file=self.stdout)
217 cmd = self.simplecmd(stdin=input, stdout=output)
229 cmd = self.simplecmd2(stdin=input, stdout=output)
239 cmd.stdout = output
H A Dtest_py_compile.py250 self.assertEqual(result.stdout, b'')
255 rc, stdout, stderr = self.pycompilecmd(self.source_path, self.source_path)
257 self.assertEqual(stdout, b'')
263 rc, stdout, stderr = self.pycompilecmd_failure(bad_syntax)
265 self.assertEqual(stdout, b'')
270 rc, stdout, stderr = self.pycompilecmd_failure('-q', bad_syntax)
272 self.assertEqual(stdout, b'')
277 rc, stdout, stderr = self.pycompilecmd_failure(self.source_path, should_not_exists)
279 self.assertEqual(stdout, b'')
284 rc, stdout, stder
[all...]
/third_party/alsa-lib/src/topology/
H A Dlog.c29 fprintf(stdout, "%c0x%6.6zx/%6.6zd - ", type, pos, pos); in tplg_log_()
30 vfprintf(stdout, fmt, va); in tplg_log_()
32 putc('\n', stdout); in tplg_log_()
/third_party/icu/icu4c/source/test/intltest/
H A Dintltest.cpp582 testoutfp = stdout; in IntlTest()
1321 fprintf(stdout, in main()
1346 fprintf(stdout, "### Too many properties. Exiting.\n"); in main()
1363 fprintf(stdout, "-----------------------------------------------\n"); in main()
1364 fprintf(stdout, " IntlTest (C++) Test Suite for \n"); in main()
1365 fprintf(stdout, " International Components for Unicode %s\n", U_ICU_VERSION); in main()
1377 fprintf(stdout, in main()
1382 fprintf(stdout, "-----------------------------------------------\n"); in main()
1383 fprintf(stdout, " Options: \n"); in main()
1384 fprintf(stdout, " al in main()
[all...]
/third_party/node/lib/internal/console/
H A Dconstructor.js105 function Console(options /* or: stdout, stderr, ignoreErrors = true */) {
115 stdout: options,
122 stdout,
123 stderr = stdout,
130 if (!stdout || typeof stdout.write !== 'function') {
131 throw new ERR_CONSOLE_WRITABLE_STREAM('stdout');
168 this[kBindStreamsEager](stdout, stderr);
194 value: function(stdout, stderr) {
196 '_stdout': { __proto__: null, ...consolePropAttributes, value: stdout },
[all...]
/third_party/astc-encoder/Test/
H A Dastc_quality_test.py66 list(str): The output log (stdout) split into lines.
69 result = sp.run(command, stdout=sp.PIPE, stderr=sp.PIPE,
78 return result.stdout.splitlines()
112 stdout = execute(command)
113 psnr, mts = parse_output(stdout)
/third_party/cJSON/tests/unity/auto/
H A Dcolour_prompt.rb102 $stdout.puts str if mode == :puts
103 $stdout.print str if mode == :print
106 $stdout.puts("#{change_to(colour)}#{str}\033[0m") if mode == :puts
107 $stdout.print("#{change_to(colour)}#{str}\033[0m") if mode == :print
/third_party/node/test/es-module/
H A Dtest-esm-type-field-errors.js42 exec(process.execPath, argv, opts, common.mustCall((err, stdout, stderr) => {
44 stdout = stderr;
48 if (stdout.includes(want)) return;
51 assert.fail(`For ${o}, failed to find ${want} in: <\n${stdout}\n>`);
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dflockfile.c29 flockfile(stdout); in do_child_one()
33 flockfile(stdout); in do_child_one()
37 funlockfile(stdout); in do_child_one()
41 funlockfile(stdout); in do_child_one()
72 * @tc.desc : Acquire for a thread ownership of a (FILE *) object (stdout)
/third_party/openssl/demos/bio/
H A Dserver-arg.c88 X509_NAME_print_ex_fp(stdout, X509_get_subject_name(x), 0, in main()
93 fflush(stdout); in main()
134 fwrite(buf, 1, i, stdout); in main()
135 fflush(stdout); in main()
/third_party/unity/auto/
H A Dcolour_prompt.rb103 $stdout.puts str if mode == :puts
104 $stdout.print str if mode == :print
107 $stdout.puts("#{change_to(colour)}#{str}\033[0m") if mode == :puts
108 $stdout.print("#{change_to(colour)}#{str}\033[0m") if mode == :print
/third_party/python/Lib/test/test_json/
H A Dtest_tool.py92 self.assertEqual(process.stdout, self.expect)
147 self.assertEqual(process.stdout, self.jsonlines_expect)
174 self.assertEqual(process.stdout, expect)
182 self.assertEqual(process.stdout, expect)
190 self.assertEqual(process.stdout, expect)
198 self.assertEqual(process.stdout, expect)
227 stdout=subprocess.PIPE,
229 # bpo-39828: Closing before json.tool attempts to write into stdout.
230 proc.stdout.close()
/third_party/elfutils/src/
H A Dstrings.c147 __fsetlocking (stdout, FSETLOCKING_BYCALLER); in main()
348 fputs_unlocked (fname, stdout); in process_chunk_mb()
349 fputs_unlocked (": ", stdout); in process_chunk_mb()
360 fputs_unlocked (*unprinted, stdout); in process_chunk_mb()
369 fwrite_unlocked (start, 1, buf - start, stdout); in process_chunk_mb()
370 putc_unlocked ('\n', stdout); in process_chunk_mb()
416 fputs_unlocked (fname, stdout); in process_chunk()
417 fputs_unlocked (": ", stdout); in process_chunk()
428 fputs_unlocked (*unprinted, stdout); in process_chunk()
432 fwrite_unlocked (start, 1, buf - start, stdout); in process_chunk()
[all...]
/third_party/alsa-utils/topology/nhlt/
H A Dnhlt-processor.c52 fprintf(stdout, "printing nhlt as bytes:\n"); in debug_print_nhlt()
58 fprintf(stdout, "0x%02x,", *top_p); in debug_print_nhlt()
61 fprintf(stdout, "\n"); in debug_print_nhlt()
64 fprintf(stdout, "0x%02x,", *top_p); in debug_print_nhlt()
67 fprintf(stdout, "\n\n"); in debug_print_nhlt()
76 fprintf(stdout, "0x%02x,", *ep_p); in debug_print_nhlt()
79 fprintf(stdout, "\n"); in debug_print_nhlt()
82 fprintf(stdout, "0x%02x,", *ep_p); in debug_print_nhlt()
85 fprintf(stdout, "\n"); in debug_print_nhlt()
88 fprintf(stdout, "\ in debug_print_nhlt()
[all...]

Completed in 11 milliseconds

12345678910>>...76