/third_party/mesa3d/src/asahi/compiler/ |
H A D | agx_compile.c | 1717 nir_print_shader(nir, stdout); in agx_compile_shader_nir() 1753 agx_print_shader(ctx, stdout); in agx_compile_shader_nir() 1760 agx_print_shader(ctx, stdout); in agx_compile_shader_nir() 1768 agx_print_shader(ctx, stdout); in agx_compile_shader_nir()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-win32.cc | 539 fflush(stdout); in ExitProcess() 562 CONSOLE, // Output is written to stdout. 589 if ((stream == stdout || stream == stderr) && !HasConsole()) { in VPrintHelper() 669 VPrintHelper(stdout, format, args); in VPrint() 1110 fflush(stdout); in Abort()
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | pngcp.c | 136 #define LOG 0x020 /* Log pass/fail to stdout */ 1594 return 0; /* stdout */ in isdir() 1873 dp->output_file = "<stdout>"; in display_start_write() 1874 dp->fp = stdout; in display_start_write() 2073 destname == NULL ? "stdout" : destname, strerror(errno)); in write_png() 2151 fflush(stdout); in print_search_results() 2199 if (destname != NULL) /* else stdout */ in cp_one_file() 2241 tmpname = NULL; /* stdout */ in cp_one_file() 2335 /* Do this at least once; if there are no arguments stdin/stdout are used. in main() 2376 fflush(stdout); in main() [all...] |
/third_party/python/Lib/test/ |
H A D | test_regrtest.py | 531 stdout=subprocess.PIPE, 536 "stdout:\n" 540 % (str(args), proc.returncode, proc.stdout)) 554 return proc.stdout 658 self.check_output(proc.stdout) 1474 print("msg1: stdout") 1483 # test_threading_excepthook (test.test_x.Tests) ... msg1: stdout 1486 regex = (r"test_print_warning.*msg1: stdout\n"
|
H A D | test_xmlrpc.py | 1410 orig_stdout = sys.stdout 1411 sys.stdout = io.TextIOWrapper(io.BytesIO(), encoding=encoding) 1413 yield sys.stdout 1415 sys.stdout = orig_stdout
|
/third_party/python/Python/ |
H A D | bltinmodule.c | 1979 a file-like object (stream); defaults to the current sys.stdout. 1983 Prints the values to a stream, or to sys.stdout by default. 1996 file = _PySys_GetAttr(tstate, &_Py_ID(stdout)); in builtin_print_impl() 1998 PyErr_SetString(PyExc_RuntimeError, "lost sys.stdout"); in builtin_print_impl() 2002 /* sys.stdout may be None when FILE* stdout isn't connected */ in builtin_print_impl() 2090 tstate, &_Py_ID(stdout)); in builtin_input_impl() 2105 "input(): lost sys.stdout"); in builtin_input_impl() 2126 sys.stdout are the same as C's stdin and stdout, becaus in builtin_input_impl() [all...] |
H A D | pylifecycle.c | 1333 "stdout", "__stdout__", in finalize_modules_delete_special() 1604 /* Flush stdout and stderr */ 1627 PyObject *fout = _PySys_GetAttr(tstate, &_Py_ID(stdout)); in flush_std_files() 1810 /* Flush sys.stdout and sys.stderr */ in Py_FinalizeEx() 1838 /* Flush sys.stdout and sys.stderr (again, in case more was printed) */ in Py_FinalizeEx() 1848 * XXX cleared out (sys.stdout is gone, sys.excepthook is gone, etc). in Py_FinalizeEx() 2181 bpo-30225: On macOS Tiger, when stdout is redirected to a pipe and the other in is_valid_fd() 2292 sys.stdout and sys.stderr: translate "\n" to "\r\n". */ in create_stdio() 2296 sys.stdout and sys.stderr: don't translate newlines (use "\n"). */ in create_stdio() 2386 /* Create sys.stdin, sys.stdout an [all...] |
H A D | pythonrun.c | 712 fflush(stdout); in _Py_HandleSystemExit() 844 fflush(stdout); in _PyErr_PrintEx() 1222 fflush(stdout); in print_exception() 1676 f = _PySys_GetAttr(tstate, &_Py_ID(stdout)); in flush_io()
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | cs-etm.c | 636 color_fprintf(stdout, color, " %s", pkt_string); in cs_etm__packet_dump() 638 color_fprintf(stdout, color, " %s\n", pkt_string); in cs_etm__packet_dump() 640 fflush(stdout); in cs_etm__packet_dump() 743 fprintf(stdout, "\n"); in cs_etm__dump_event() 744 color_fprintf(stdout, color, in cs_etm__dump_event()
|
H A D | intel-pt.c | 241 color_fprintf(stdout, color, in intel_pt_dump() 252 color_fprintf(stdout, color, " %08x: ", pos); in intel_pt_dump() 254 color_fprintf(stdout, color, " %02x", buf[i]); in intel_pt_dump() 256 color_fprintf(stdout, color, " "); in intel_pt_dump() 261 color_fprintf(stdout, color, " %s\n", desc); in intel_pt_dump() 263 color_fprintf(stdout, color, " Bad packet!\n"); in intel_pt_dump() 4161 fprintf(stdout, fmt, arr[i]); in intel_pt_print_info() 4170 fprintf(stdout, " %-20s%s\n", name, str ? str : ""); in intel_pt_print_info_str() 4303 fprintf(stdout, " Cap Event Trace %d\n", in intel_pt_process_auxtrace_info()
|
/third_party/python/Lib/ |
H A D | argparse.py | 21 '--log', default=sys.stdout, type=argparse.FileType('w'), 1145 parser._print_message(formatter.format_help(), _sys.stdout) 1289 return _sys.stdout.buffer if 'b' in self._mode else _sys.stdout 2595 file = _sys.stdout 2600 file = _sys.stdout
|
/base/hiviewdfx/hidumper/frameworks/native/ |
H A D | dump_utils.cpp | 249 setvbuf(stdout, nullptr, _IONBF, 0); // never cache stdout in IgnoreStdoutCache()
|
/base/startup/init/services/modules/seccomp/scripts/tools/ |
H A D | collect_elf_syscall.py | 49 process = subprocess.Popen(cmd.split(' '), stdout=output_file)
|
/kernel/linux/linux-5.10/arch/powerpc/boot/ |
H A D | wrapper | 578 gzip -n --force -9 --stdout "$ofile.bin" > "$odir/$bld"
|
/kernel/linux/linux-5.10/arch/um/os-Linux/ |
H A D | file.c | 574 fflush(stdout); in os_flush_stdout()
|
/kernel/linux/linux-5.10/Documentation/sphinx/ |
H A D | kfigure.py | 311 exit_code = subprocess.call(cmd, stdout = out) 328 # use stdout and stderr from parent
|
/kernel/linux/linux-6.6/arch/powerpc/boot/ |
H A D | wrapper | 606 gzip -n --force -9 --stdout "$ofile.bin" > "$odir/$bld"
|
/kernel/linux/linux-6.6/Documentation/sphinx/ |
H A D | kfigure.py | 361 exit_code = subprocess.call(cmd, stdout = out) 424 # use stdout and stderr from parent
|
/kernel/linux/linux-5.10/tools/testing/selftests/exec/ |
H A D | execveat.c | 422 fflush(stdout); in main()
|
/kernel/linux/linux-6.6/arch/um/os-Linux/ |
H A D | file.c | 574 fflush(stdout); in os_flush_stdout()
|
/kernel/linux/linux-5.10/samples/bpf/ |
H A D | test_lru_dist.c | 509 setbuf(stdout, NULL); in main()
|
/kernel/linux/linux-5.10/scripts/ |
H A D | insert-sys-cert.c | 34 #define warn(format, args...) fprintf(stdout, "WARNING: " format, ## args)
|
/kernel/linux/linux-5.10/tools/bpf/bpftool/ |
H A D | struct_ops.c | 422 wtr = jsonw_new(stdout); in do_dump()
|
/kernel/linux/linux-5.10/tools/perf/bench/ |
H A D | epoll-wait.c | 89 do { if (__verbose) { printf(fmt, ## arg); fflush(stdout); } } while (0)
|
/kernel/linux/linux-5.10/tools/perf/tests/ |
H A D | builtin-test.c | 797 setvbuf(stdout, NULL, _IONBF, 0); in cmd_test()
|