/test/xts/acts/kernel_lite/util_posix/src/ |
H A D | XtsActsUtil.h | 32 ret = vfprintf(stdout, format, ap);
in LogPrint()
|
/third_party/curl/src/ |
H A D | tool_main.h | 41 # define STDOUT_FILENO fileno(stdout)
|
H A D | tool_stderr.c | 47 tool_stderr = stdout; in tool_set_stderr_file() 61 the latter may be set to stdout. */ in tool_set_stderr_file()
|
/third_party/backends/backend/ |
H A D | hp5400_debug.c | 58 DBG_MSG = stdout; in hp5400_dbg_start()
|
/third_party/libunwind/libunwind/src/mi/ |
H A D | init.c | 54 setbuf (stdout, NULL); in mi_init()
|
/third_party/json/tests/thirdparty/Fuzzer/test/ |
H A D | SpamyTest.cpp | 4 // The test spams to stderr and stdout. 14 fflush(stdout); in LLVMFuzzerTestOneInput()
|
/third_party/node/lib/internal/test_runner/reporter/ |
H A D | dot.js | 26 return MathMax(process.stdout.columns ?? 20, 20);
|
/third_party/node/test/wasi/c/ |
H A D | follow_symlink.c | 10 int wrote = fputc(c, stdout); in main()
|
H A D | read_file.c | 10 int wrote = fputc(c, stdout); in main()
|
H A D | freopen.c | 12 int wrote = fputc((char)c, stdout); in main()
|
H A D | read_file_twice.c | 11 int wrote = fputc(c, stdout); in main()
|
/third_party/node/test/fixtures/workload/ |
H A D | fibonacci.js | 8 process.stdout.write(`${fib(n)}\n`);
|
/third_party/rust/crates/clap/clap_complete_fig/examples/ |
H A D | fig_completion.rs | 11 generate(Fig, &mut cmd, "myapp", &mut io::stdout()); in main()
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | fixup_fuzz_result.py | 24 sys.stdout.write(content)
|
/third_party/openssl/ |
H A D | run_command.py | 24 result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 26 print(f'result.stdout = {result.stdout.decode("utf-8", errors="ignore")}')
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | fixup_fuzz_result.py | 24 sys.stdout.write(content)
|
/third_party/typescript/tests/arkTSTest/ |
H A D | run_test.py | 19 p = subprocess.Popen("node run.js --detail", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/third_party/skia/experimental/tools/ |
H A D | gerrit_percent_encode | 17 sys.stdout.write(gerrit_percent_encode(' '.join(sys.argv[1:])) + '\n')
|
/third_party/rust/crates/rustix/src/io/ |
H A D | stdio.rs | 83 /// The stdout file descriptor can be closed, potentially on other threads, in 98 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/stdout.html 99 /// [Linux]: https://man7.org/linux/man-pages/man3/stdout.3.html 102 pub const unsafe fn stdout() -> BorrowedFd<'static> { 108 /// This is similar to [`stdout`], however it returns an `OwnedFd` which closes 113 /// This is unsafe for the same reasons as [`stdout`]. 117 /// This has the same hazards as [`stdout`]. 120 /// descriptors may unknowingly reuse the stdout file descriptor number, which 128 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/stdout.html 129 /// [Linux]: https://man7.org/linux/man-pages/man3/stdout [all...] |
/third_party/spirv-tools/utils/ |
H A D | fixup_fuzz_result.py | 24 sys.stdout.write(content)
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | dump_state.py | 408 sys.stdout.write('\tCONST[%2u] = {%10.4f, %10.4f, %10.4f, %10.4f}\n' % (index, x, y, z, w)) 410 sys.stdout.flush() 538 sys.stdout.write('\t...\n') 655 fp = sys.stdout, 815 # Write the call to stderr (as stdout would corrupt the JSON output) 817 sys.stdout.flush() 820 sys.stdout.flush()
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_sidebar.py | 441 # Apr. 2021), sys.stdout is changed between tests. However, 442 # PyShell relies on overriding sys.stdout when run without a 445 if sys.stdout != self.shell.stdout: 446 self._saved_stdout = sys.stdout 447 sys.stdout = self.shell.stdout 453 sys.stdout = self._saved_stdout
|
/third_party/python/Lib/test/ |
H A D | test_launcher.py | 186 stdout=subprocess.PIPE, 192 version = next(p.stdout, "\n").splitlines()[0].rpartition(" ")[2] 193 p.stdout.read() 230 stdout=subprocess.PIPE, 235 out = p.stdout.read().decode("utf-8", "replace") 253 data["stdout"] = out 327 for line in data["stdout"].splitlines(): 345 print(data["stdout"]) 352 for line in data["stdout"].splitlines(): 379 print(data["stdout"]) [all...] |
/third_party/node/deps/v8/tools/testrunner/outproc/ |
H A D | mozilla.py | 11 'FAILED!' in output.stdout
|
/third_party/node/test/parallel/ |
H A D | test-tty-stdin-pipe.js | 31 const rl = readline.createInterface(process.stdin, process.stdout);
|