/third_party/musl/src/stdio/ |
H A D | vwprintf.c | 6 return vfwprintf(stdout, fmt, ap); in vwprintf()
|
H A D | printf.c | 9 ret = vfprintf(stdout, fmt, ap); in printf()
|
/third_party/python/Lib/test/subprocessdata/ |
H A D | qgrep.py | 10 sys.stdout.write(line)
|
/third_party/python/PC/ |
H A D | launcher2.c | 362 fwprintf(stdout, wUsage, (L"" PY_VERSION), argv[0]); in showHelpText() 363 fflush(stdout); in showHelpText() 1970 fflush(stdout); in _installEnvironment() 1971 int mode = _setmode(_fileno(stdout), _O_U8TEXT); in _installEnvironment() 1973 fwprintf_s(stdout, L"\"%s\" %s\n", command, arguments); in _installEnvironment() 1975 fwprintf_s(stdout, L"\"%s\"\n", command); in _installEnvironment() 1977 fflush(stdout); in _installEnvironment() 1979 _setmode(_fileno(stdout), mode); in _installEnvironment() 2046 ***********************************************************************\n", stdout); in installEnvironment() 2056 Install appears to have succeeded. Searching for new matching installs.\n", stdout); in installEnvironment() [all...] |
/third_party/alsa-utils/amidi/ |
H A D | amidi.c | 232 if ((err = snd_output_stdio_attach(&output, stdout, 0)) < 0) { in rawmidi_list() 435 fputs("\n ", stdout); in print_byte() 738 fflush(stdout); in main() 749 if (isatty(fileno(stdout))) in main()
|
/third_party/mbedtls/programs/ssl/ |
H A D | ssl_context_info.c | 148 fflush(stdout); in printf_dbg() 158 fflush(stdout); in printf_err() 224 * This function prints base64 code to the stdout 239 fflush(stdout); in print_b64() 243 * This function prints hex code from the buffer to the stdout. 268 fflush(stdout); in print_hex() 440 * This function deserializes and prints to the stdout all obtained information 488 * This function deserializes and prints to the stdout all obtained information 717 * This function deserializes and prints to the stdout all obtained information
|
/third_party/node/deps/v8/tools/mb/ |
H A D | mb_test.py | 76 f = kwargs.get('file', sys.stdout) 593 orig_stdout = sys.stdout 595 sys.stdout = StringIO.StringIO() 600 sys.stdout = orig_stdout
|
/third_party/libinput/tools/ |
H A D | libinput-measure-touchpad-pressure.py | 262 cmd = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 270 stdout = cmd.stdout.decode("utf-8") 271 quirks = [q.split("=") for q in stdout.split("\n")]
|
H A D | libinput-measure-touch-size.py | 229 cmd = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 237 stdout = cmd.stdout.decode("utf-8") 238 quirks = [q.split("=") for q in stdout.split("\n")]
|
/third_party/ltp/testcases/kernel/ipc/pipeio/ |
H A D | pipeio.c | 606 fflush(stdout); in check_rw_buf() 708 fflush(stdout); in do_parent() 753 fflush(stdout); in help() 842 fflush(stdout); in prt_buf()
|
/third_party/littlefs/scripts/ |
H A D | readmdir.py | 307 def _dump_tags(self, tags, f=sys.stdout, truncate=True): 332 def dump_tags(self, f=sys.stdout, truncate=True): 335 def dump_log(self, f=sys.stdout, truncate=True): 338 def dump_all(self, f=sys.stdout, truncate=True):
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_time.c | 306 fputc(ver, stdout); in s_time_main() 307 fflush(stdout); in s_time_main() 389 fputc(ver, stdout); in s_time_main() 390 fflush(stdout); in s_time_main()
|
/third_party/python/Lib/ |
H A D | telnetlib.py | 261 The higher it is, the more debug output you get (on sys.stdout). 557 sys.stdout.write(text.decode('ascii')) 558 sys.stdout.flush() 584 sys.stdout.write(data.decode('ascii')) 586 sys.stdout.flush()
|
H A D | webbrowser.py | 239 stdout=(self.redirect_stdout and inout or None), 347 # elinks doesn't like its stdout to be redirected - 348 # it uses redirected stdout as a signal to do -dump 372 stdout=devnull, stderr=devnull) 384 stdout=devnull, stderr=devnull, 397 stdout=devnull, stderr=devnull,
|
/third_party/openssl/apps/ |
H A D | s_time.c | 306 fputc(ver, stdout); in s_time_main() 307 fflush(stdout); in s_time_main() 389 fputc(ver, stdout); in s_time_main() 390 fflush(stdout); in s_time_main()
|
/third_party/skia/third_party/externals/libpng/contrib/pngminus/ |
H A D | pnm2png.c | 48 FILE *fp_wr = stdout; in main() 95 else if (fp_wr == stdout) in main() 114 /* set stdin/stdout to binary, in main() 119 if (fp_wr == stdout) in main() 120 setmode (fileno (stdout), O_BINARY); in main()
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/ |
H A D | hb_test_tools.py | 53 def Auto (argv = [], out = sys.stdout): 140 sys.stdout.writelines ([" ", lines[0]]) 145 sys.stdout.writelines ([symbols[i], l]) 296 sys.stdout.writelines ([line])
|
/third_party/skia/tools/skpbench/ |
H A D | skpbench.py | 134 for line in iter(self._proc.stdout.readline, b''): 183 def get_header(cls, outfile=sys.stdout): 238 self._proc = subprocess.Popen(commandline, stdout=subprocess.PIPE, 293 sys.stdout.flush()
|
/third_party/rust/crates/rustix/examples/ |
H A D | stdio.rs | 9 use rustix::io::{self, stderr, stdin, stdout}; 22 let (stdin, stdout, stderr) = unsafe { (stdin(), stdout(), stderr()) }; in main() 28 show(&stdout)?; in main()
|
/third_party/libsnd/src/ |
H A D | test_main.h | 22 fflush (stdout) ; in print_test_name()
|
/third_party/node/test/fixtures/ |
H A D | print-chars-from-buffer.js | 31 process.stdout.write(b);
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | printf.c | 9 ret = vfprintf(stdout, fmt, ap); in printf()
|
/third_party/node/deps/npm/node_modules/set-blocking/ |
H A D | index.js | 2 [process.stdout, process.stderr].forEach(function (stream) {
|
/third_party/rust/crates/is-terminal/examples/ |
H A D | stdio.rs | 5 println!("stdout? {}", std::io::stdout().is_terminal()); in main()
|
/third_party/skia/third_party/externals/microhttpd/src/testspdy/ |
H A D | common.h | 32 fflush(stdout);\
|