Home
last modified time | relevance | path

Searched refs:stdout (Results 76 - 100 of 2176) sorted by relevance

12345678910>>...88

/third_party/mbedtls/programs/ssl/
H A Dssl_fork_server.c111 fflush(stdout); in main()
126 fflush(stdout); in main()
161 fflush(stdout); in main()
172 mbedtls_ssl_conf_dbg(&conf, my_debug, stdout); in main()
186 fflush(stdout); in main()
203 fflush(stdout); in main()
216 fflush(stdout); in main()
247 fflush(stdout); in main()
273 fflush(stdout); in main()
290 fflush(stdout); in main()
[all...]
H A Dssl_mail_client.c160 fflush(stdout); in do_handshake()
457 fflush(stdout); in main()
472 fflush(stdout); in main()
501 fflush(stdout); in main()
549 fflush(stdout); in main()
563 fflush(stdout); in main()
578 mbedtls_ssl_conf_dbg(&conf, my_debug, stdout); in main()
610 fflush(stdout); in main()
621 fflush(stdout); in main()
632 fflush(stdout); in main()
[all...]
/third_party/python/Lib/test/libregrtest/
H A Dsetup.py45 support.record_original_stdout(sys.stdout)
115 """Set stdout encoder error handler to backslashreplace (as stderr error
117 stdout = sys.stdout
119 fd = stdout.fileno()
121 # On IDLE, sys.stdout has no file descriptor and is not a TextIOWrapper
122 # object. Leaving sys.stdout unchanged.
128 sys.stdout = open(fd, 'w',
129 encoding=stdout.encoding,
135 sys.stdout
[all...]
/third_party/node/lib/internal/debugger/
H A Dinspect.js82 child.stdout.setEncoding('utf8');
84 child.stdout.on('data', (chunk) => childPrint(chunk, 'stdout'));
128 constructor(options, stdin, stdout) {
131 this.stdout = stdout;
221 this.stdout.write('.');
225 this.stdout.write(' ok\n');
232 this.stdout.write(' failed to connect, please retry\n');
237 if (this.stdout
[all...]
/third_party/node/deps/v8/tools/
H A Drun-clang-tidy.py64 stdout=subprocess.PIPE,
70 line = ninja_ps.stdout.readline()
109 stdout=subprocess.PIPE,
115 line = ct_process.stdout.readline()
136 sys.stdout.write(line)
149 stdout=subprocess.PIPE,
153 line = ct_process.stdout.readline()
164 sys.stdout.write(warning.to_string(print_files))
176 ['git', 'diff', '-U0', diff_branch], stdout=subprocess.PIPE)
196 stdin=git_ps.stdout,
[all...]
H A Dadb-d8.py47 sys.stdout.write("Serving {}\r\n".format(os.path.relpath(filename)))
71 stdout=subprocess.PIPE
78 stdin=local_md5_sum_proc.stdout,
79 stdout=subprocess.PIPE,
94 ], stdout=sys.stdout if verbose else open(os.devnull, 'wb'))
118 if sys.stdout.isatty():
129 def PrintUsage(file=sys.stdout):
134 def PrintHelp(file=sys.stdout):
179 PrintHelp(sys.stdout)
[all...]
H A Dpredictable_wrapper.py41 def allocation_str(stdout):
42 for line in reversed((stdout or '').splitlines()):
54 if output.stdout:
56 print(output.stdout)
66 allocations = allocation_str(output.stdout)
/third_party/node/deps/v8/tools/testrunner/local/
H A Dcommand.py108 stdout, stderr = process.communicate()
116 stdout.decode('utf-8', 'replace'),
126 stdout=subprocess.PIPE,
156 sys.stdout.flush()
161 sys.stdout.flush()
195 stdout=subprocess.PIPE,
216 stdout=subprocess.PIPE,
219 stdout, stderr = tk.communicate()
222 print(stdout)
225 sys.stdout
[all...]
/third_party/python/Lib/test/test_importlib/frozen/
H A Dtest_loader.py62 with captured_stdout() as stdout:
68 return module, stdout.getvalue()
141 with captured_stdout() as stdout:
143 return module, stdout
146 module, stdout = self.load_module('__hello__')
155 self.assertEqual(stdout.getvalue(), 'Hello world!\n')
158 module, stdout = self.load_module('__phello__')
172 self.assertEqual(stdout.getvalue(), 'Hello world!\n')
176 module, stdout = self.load_module('__phello__.spam')
188 self.assertEqual(stdout
[all...]
/third_party/musl/src/stdio/
H A Dputs.c6 FLOCK(stdout); in puts()
7 r = -(fputs(s, stdout) < 0 || putc_unlocked('\n', stdout) < 0); in puts()
8 FUNLOCK(stdout); in puts()
/third_party/musl/porting/liteos_a/kernel/src/stdio/
H A Dputs.c6 FLOCK(stdout); in puts()
7 r = -(fputs(s, stdout) < 0 || putc_unlocked('\n', stdout) < 0); in puts()
8 FUNLOCK(stdout); in puts()
/third_party/python/Tools/demo/
H A Drpythond.py41 stdout = sys.stdout
43 sys.stdout = sys.stderr = fakefile = io.StringIO()
52 sys.stdout = stdout
/third_party/ffmpeg/tools/
H A Dvenc_data_dump.c41 fprintf(stdout, "frame %d\n", dc->decoder->frame_number - 1); in process_frame()
47 fprintf(stdout, "AVVideoEncParams %d\n", par->type); in process_frame()
48 fprintf(stdout, "qp %d\n", par->qp); in process_frame()
52 fprintf(stdout, "delta_qp[%d][%d] %"PRId32"\n", i, j, par->delta_qp[i][j]); in process_frame()
56 fprintf(stdout, "nb_blocks %d\n", par->nb_blocks); in process_frame()
60 fprintf(stdout, "block %d %d:%d %dx%d %"PRId32"\n", in process_frame()
/third_party/node/test/parallel/
H A Dtest-http-chunk-problem.js17 res.pipe(process.stdout);
31 process.stdout.write(shasum.digest('hex'));
54 (err, stdout, stderr) => {
59 assert.strictEqual(stdout.slice(0, 40),
78 cat.stdout.on('data', (data) => {
82 cat.stdout.on('end', () => res.end());
H A Dtest-console-clear.js6 const stdoutWrite = process.stdout.write;
13 process.stdout.isTTY = isTTY;
14 process.stdout.write = (string) => buf += string;
16 process.stdout.write = stdoutWrite;
H A Dtest-child-process-execfile-maxbuf.js19 checkFactory('stdout')
28 common.mustSucceed((stdout, stderr) => {
29 assert.strictEqual(stdout.trim(), 'a'.repeat(1024 * 1024 - 1));
42 common.mustSucceed((stdout, stderr) => {
43 assert.strictEqual(stdout.trim(), 'hello world');
50 execFile('echo', ['hello world'], { maxBuffer: 5 }, checkFactory('stdout'));
60 checkFactory('stdout'));
77 checkFactory('stdout')
80 child.stdout.setEncoding('utf-8');
H A Dtest-snapshot-weak-reference.js31 console.log(child.stdout.toString());
51 const stdout = child.stdout.toString().trim();
53 console.log(`[stdout]:\n${stdout}\n`);
/third_party/openssl/demos/pkey/
H A DEVP_PKEY_EC_keygen.c69 fprintf(stdout, "Generating EC key\n\n"); in do_ec_keygen()
119 fprintf(stdout, "Curve name: %s\n", out_curvename); in get_key_values()
120 fprintf(stdout, "Public key:\n"); in get_key_values()
121 BIO_dump_indent_fp(stdout, out_pubkey, out_pubkey_len, 2); in get_key_values()
122 fprintf(stdout, "Private Key:\n"); in get_key_values()
123 BIO_dump_indent_fp(stdout, out_privkey, out_privkey_len, 2); in get_key_values()
/third_party/rust/crates/rustix/tests/termios/
H A Disatty.rs30 assert_eq!(isatty(&std::io::stdout()), unsafe { in stdout_stderr_terminals()
31 libc::isatty(std::io::stdout().as_raw_fd()) != 0 in stdout_stderr_terminals()
39 isatty(&std::io::stdout()), in stdout_stderr_terminals()
40 tcgetwinsize(&std::io::stdout()).is_ok() in stdout_stderr_terminals()
61 rustix::io::stdout().as_raw_fd(), in stdio_descriptors()
62 std::io::stdout().as_raw_fd() in stdio_descriptors()
/third_party/rust/crates/io-lifetimes/examples/
H A Dportable-views.rs6 use std::io::{self, stdout};
9 let stdout = stdout(); in main()
17 let metadata = stdout.as_filelike_view::<File>().metadata()?; in main()
20 println!("stdout is a file!"); in main()
22 println!("stdout is not a file!"); in main()
/third_party/python/Lib/ctypes/
H A Dutil.py125 stdout=subprocess.PIPE,
131 trace = proc.stdout.read()
160 stdout=subprocess.PIPE,
165 data = proc.stdout.read()
182 stdout=subprocess.PIPE,
187 dump = proc.stdout.read()
213 stdout=subprocess.PIPE,
219 data = proc.stdout.read()
244 stdout=subprocess.PIPE,
250 for line in proc.stdout
[all...]
/third_party/nghttp2/
H A Dgenpathchartbl.py17 sys.stdout.write('1 /* {} */, '.format(chr(i)))
19 sys.stdout.write('1 /* {} */, '.format(hex(i)))
21 sys.stdout.write('0 /* {} */, '.format(name(i)))
23 sys.stdout.write('\n')
/third_party/rust/crates/libc/
H A Dbuild.rs131 let version = otry!(str::from_utf8(&output.stdout).ok()); in rustc_minor_nightly()
164 let stdout = String::from_utf8(output.stdout).ok(); in which_freebsd()
165 if stdout.is_none() { in which_freebsd()
168 let stdout = stdout.unwrap(); in which_freebsd()
170 match &stdout { in which_freebsd()
/third_party/protobuf/examples/
H A DAddPerson.java16 PrintStream stdout) throws IOException { in PromptForAddress()
19 stdout.print("Enter person ID: "); in PromptForAddress()
22 stdout.print("Enter name: "); in PromptForAddress()
25 stdout.print("Enter email address (blank for none): "); in PromptForAddress()
32 stdout.print("Enter a phone number (or leave blank to finish): "); in PromptForAddress()
41 stdout.print("Is this a mobile, home, or work phone? "); in PromptForAddress()
50 stdout.println("Unknown phone type. Using default."); in PromptForAddress()
15 PromptForAddress(BufferedReader stdin, PrintStream stdout) PromptForAddress() argument
/third_party/node/test/tick-processor/
H A Dtick-processor-base.js24 proc.stdout.on('data', (chunk) => ticks += chunk);
47 proc.stdout.on('data', (chunk) => out += chunk);
48 proc.stdout.once('end', () => {
56 parent.stdout.removeAllListeners();
60 proc.stdout.removeAllListeners();

Completed in 8 milliseconds

12345678910>>...88