/third_party/googletest/googletest/src/ |
H A D | gtest-port.cc | 1033 // Object that captures an output stream (stdout/stderr). 1151 // Starts capturing an output stream (stdout/stderr). 1180 // Starts capturing stdout. 1182 CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); 1190 // Stops capturing stdout and returns the captured string. 1297 fflush(stdout); 1314 fflush(stdout); 1356 fflush(stdout);
|
/third_party/icu/icu4c/source/extra/uconv/ |
H A D | uconv.cpp | 1068 FILE *fp = ecode ? stderr : stdout; in usage() 1324 // Open the correct output file or connect to stdout for reading input in main() 1337 outfile = stdout; in main() 1380 if (outfile != stdout) { in main()
|
/third_party/mesa3d/src/freedreno/decode/ |
H A D | pgmdump.c | 612 disasm_a3xx((uint32_t *)instrs, instrs_size / 4, level + 1, stdout, in dump_shaders_a3xx() 693 disasm_a3xx((uint32_t *)instrs, instrs_size / 4, level + 1, stdout, in dump_shaders_a3xx() 1044 return disasm_a3xx(buf, ret / 4, 0, stdout, gpu_id); in main()
|
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest-port.cc | 1071 // Object that captures an output stream (stdout/stderr). 1162 // Starts capturing an output stream (stdout/stderr). 1182 // Starts capturing stdout. 1184 CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); 1192 // Stops capturing stdout and returns the captured string. 1302 fflush(stdout); 1319 fflush(stdout); 1361 fflush(stdout);
|
/third_party/node/deps/googletest/src/ |
H A D | gtest-port.cc | 1052 // Object that captures an output stream (stdout/stderr). 1176 // Starts capturing an output stream (stdout/stderr). 1205 // Starts capturing stdout. 1207 CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); 1215 // Stops capturing stdout and returns the captured string. 1322 fflush(stdout); 1339 fflush(stdout); 1381 fflush(stdout);
|
/third_party/popt/src/ |
H A D | popthelp.c | 40 poptPrintHelp(con, stdout, 0); in displayArgs() 42 poptPrintUsage(con, stdout, 0); in displayArgs() 101 int fdno = fileno(fp ? fp : stdout); in maxColumnWidth()
|
/third_party/skia/third_party/externals/icu/source/extra/uconv/ |
H A D | uconv.cpp | 1068 FILE *fp = ecode ? stderr : stdout; in usage() 1324 // Open the correct output file or connect to stdout for reading input in main() 1337 outfile = stdout; in main() 1380 if (outfile != stdout) { in main()
|
/third_party/toybox/lib/ |
H A D | xwrap.c | 33 // instead of exiting, lets xexit() report stdout flush failures to stderr 142 // if !flush just check for error on stdout without flushing 145 if ((flush && fflush(0)) || ferror(stdout)) in xflush() 164 while (len != (out = fwrite(s, 1, len, stdout))) { in xputsl() 178 // Write string to stdout with newline, flushing and checking for errors 187 if (EOF == fputc(c, stdout)) perror_exit("write"); in xputc() 220 // Spawn child process, capturing stdin/stdout. 223 // pipes[2]: Filehandle to move to stdin/stdout of new process. 224 // If -1, replace with pipe handle connected to stdin/stdout. 225 // NULL treated as {0, 1}, I.E. leave stdin/stdout a [all...] |
/third_party/toybox/toys/pending/ |
H A D | sh.c | 185 fputs(toybuf, stdout); in do_prompt() 186 } else if (cc=='s') fputs(getbasename(*toys.argv), stdout); in do_prompt() 199 fflush(stdout); in do_prompt() 442 // TODO: /dev/fd/# /dev/{stdin,stdout,stderr} /dev/{tcp,udp}/host/port in run_command() 502 // TODO: don't close stdin/stdout! in run_command()
|
/third_party/python/Lib/ |
H A D | calendar.py | 737 write = sys.stdout.buffer.write 760 write = sys.stdout.write 763 write = sys.stdout.buffer.write
|
/third_party/f2fs-tools/tools/f2fs_io/ |
H A D | f2fs_io.c | 1358 putc('\n', stdout); in do_help() 1359 fputs("USAGE:\n ", stdout); in do_help() 1360 fputs(p->cmd_help, stdout); in do_help() 1367 fputs("Available commands:\n", stdout); in do_help()
|
/third_party/googletest/googletest/scripts/ |
H A D | upload.py | 113 """Print a status message to stdout. 558 """Executes a command and returns the output from stdout and the return code. 562 print_output: If True, the output is printed to stdout. 563 If False, both stdout and stderr are ignored. 570 p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 575 line = p.stdout.readline() 582 output = p.stdout.read() 587 p.stdout.close()
|
/third_party/node/deps/v8/tools/mb/ |
H A D | mb.py | 1150 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 1191 if kwargs.get('stream', sys.stdout) == sys.stdout: 1192 sys.stdout.flush()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-debugger.cc | 1175 fprintf(stdout, "Async stacks count: %zu\n", m_allAsyncStacks.size()); in dumpAsyncTaskStacksStateForTest() 1176 fprintf(stdout, "Scheduled async tasks: %zu\n", m_asyncTaskStacks.size()); in dumpAsyncTaskStacksStateForTest() 1177 fprintf(stdout, "Recurring async tasks: %zu\n", m_recurringTasks.size()); in dumpAsyncTaskStacksStateForTest() 1178 fprintf(stdout, "\n"); in dumpAsyncTaskStacksStateForTest()
|
/third_party/node/deps/v8/src/objects/ |
H A D | map-updater.cc | 492 isolate_, old_map_, stdout, "uninitialized field", modified_descriptor_, in TryReconfigureToDataFieldInplace() 1021 isolate_, old_map_, stdout, "", modified_descriptor_, split_nof, in ConstructNewMap() 1105 PrintReconfiguration(isolate, map, stdout, descriptor, kind, attributes); in ReconfigureExistingProperty() 1230 isolate, map, stdout, "field type generalization", modify_index, in GeneralizeField()
|
/third_party/python/Lib/test/ |
H A D | test_clinic.py | 543 with support.captured_stdout() as stdout: 546 return stdout.getvalue() 836 with support.captured_stdout() as stdout: 839 self.assertEqual(stdout.getvalue(), 'Error in file "clown.txt" on line 69:\nThe igloos are melting!\n')
|
H A D | test_optparse.py | 155 """Assert the parser prints the expected output on stdout.""" 156 save_stdout = sys.stdout 159 sys.stdout = StringIO() 162 output = sys.stdout.getvalue() 163 sys.stdout = save_stdout
|
/third_party/openssl/apps/ |
H A D | req.c | 702 BIO_printf(bio_err, "stdout\n"); in req_main() 993 fprintf(stdout, "Modulus is unavailable\n"); in req_main() 996 fprintf(stdout, "Modulus="); in req_main() 1005 fprintf(stdout, "Wrong Algorithm type"); in req_main() 1007 fprintf(stdout, "\n"); in req_main()
|
/third_party/tzdata/ |
H A D | zdump.c | 369 fflush(stdout); in my_localtime_rz() 409 fflush(stdout); in abbrok() 506 usage(stdout, EXIT_SUCCESS); in main() 677 close_file(stdout); in main()
|
/third_party/selinux/libselinux/src/ |
H A D | selinux_restorecon.c | 720 fprintf(stdout, "\r%-.1f%%", (double)pc); in restorecon_sb() 722 fprintf(stdout, "\r%" PRIu64 "k", fc_count / STAR_COUNT); in restorecon_sb() 724 fflush(stdout); in restorecon_sb() 1390 fprintf(stdout, "\r%s 100.0%%\n", pathname); in selinux_restorecon_common()
|
/third_party/ltp/testcases/kernel/fs/doio/ |
H A D | growfiles.c | 452 prt_examples(stdout); in main() 1139 fflush(stdout); /* ensure pending i/o is flushed before forking */ in main() 1413 fflush(stdout); in main() 1605 fflush(stdout); in main() 1681 fprintf(stdout, in sig_handler() 1831 fprintf(stdout, "\ in help()
|
/third_party/lz4/tests/ |
H A D | fuzzer.c | 95 #define DISPLAY(...) fprintf(stdout, __VA_ARGS__) 117 fflush(stdout); in FUZ_displayUpdate() 195 fflush(stdout); in FUZ_AddressOverflow() 208 DISPLAY("%3i \b\b\b\b", nbBuff); fflush(stdout); in FUZ_AddressOverflow() 214 fflush(stdout); in FUZ_AddressOverflow() 353 fflush(stdout); \ in FUZ_test()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/third_party/ |
H A D | vulkan_command_buffer_utils.cpp | 367 fflush(stdout); in init_connection() 428 fflush(stdout); in init_window() 450 fflush(stdout); in init_window() 483 fflush(stdout); in init_window() 491 fflush(stdout); in init_window() 1478 fflush(stdout); in GLSLtoSPV()
|
/third_party/python/Python/ |
H A D | initconfig.c | 56 -u : force the stdout and stderr streams to be unbuffered;\n\ 141 "PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n" 175 "PYTHONUNBUFFERED : disable stdout/stderr buffering (-u)\n" 189 stdin and stdout error handler to "surrogateescape". */ 2208 _setmode(fileno(stdout), O_BINARY); in config_init_stdio() 2215 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ); in config_init_stdio() 2219 setbuf(stdout, (char *)NULL); in config_init_stdio() 2227 setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ); in config_init_stdio() 2231 setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ); in config_init_stdio() 2242 - initialize C standard streams (stdin, stdout, stder [all...] |
/third_party/elfutils/tests/ |
H A D | dwflmodtest.c | 242 (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER); in main()
|