/third_party/node/deps/npm/lib/utils/ |
H A D | otplease.js | 6 if (!process.stdin.isTTY || !process.stdout.isTTY) {
|
/third_party/littlefs/scripts/ |
H A D | teepipe.py | 19 # allow '-' for stdin/stdout 24 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering)
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/ |
H A D | 17-1.c | 58 fflush(stdout); in main()
|
H A D | 1-1.c | 52 fflush(stdout); in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | fflush.c | 35 * @tc.desc : Verify fflush and stdout process success and return 0. 41 int32_t ret = fprintf(stdout, "%s", array); in fflush_0200()
|
/third_party/python/Tools/scripts/ |
H A D | nm2def.py | 99 f = sys.stdout # open('PC/python_nt.def','w')
|
H A D | parseentities.py | 7 Input is read from stdin, output is written to stdout in form of a 64 writefile(sys.stdout, defs)
|
H A D | rgrep.py | 60 sys.stdout = sys.stderr
|
/third_party/pulseaudio/src/tests/ |
H A D | stripnul.c | 41 pa_assert_se((o = (argc >= 4) ? fopen(argv[3], "w") : stdout)); in main()
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | testresample2.c | 80 fwrite(fout, sizeof(float), out_len, stdout); in main()
|
H A D | testresample.c | 76 fwrite(out, sizeof(short), out_len, stdout); in main()
|
/third_party/vk-gl-cts/execserver/tools/ |
H A D | xsMain.cpp | 62 // Set line buffered mode to stdout so executor gets any log messages in a timely manner. in main() 63 setvbuf(stdout, DE_NULL, _IOLBF, 4*1024); in main()
|
/third_party/vk-gl-cts/external/amber/src/samples/ |
H A D | android_helper.cc | 37 freopen(stdout_file_cstr, "w", stdout); in Java_com_google_amber_Amber_androidHelper()
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
H A D | readpng2.h | 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
|
H A D | writepng.h | 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);}
|
/third_party/toybox/toys/other/ |
H A D | help.c | 40 show_help(stdout); in do_help() 45 // The simple help is just toys.which = toy_find("name"); show_help(stdout);
|
/third_party/toybox/toys/posix/ |
H A D | strings.c | 65 if (count == wlen) fputc(toybuf[i], stdout); in do_strings()
|
/third_party/rust/crates/rustix/tests/ |
H A D | backends.rs | 125 child.status.success() && !child.stdout.is_empty() in has_dependency()
|
/third_party/rust/crates/syn/ |
H A D | build.rs | 33 cmd.stdout(Stdio::null()); in unstable()
|
/third_party/selinux/libsepol/src/ |
H A D | debug.c | 57 stream = stdout; in sepol_msg_default_handler()
|
/third_party/rust/crates/serde/serde/ |
H A D | build.rs | 80 let version = match str::from_utf8(&output.stdout) { in rustc_minor_version()
|
/third_party/googletest/googletest/src/ |
H A D | gtest.cc | 3144 fflush(stdout); 3151 // to stdout is done by OutputDebugString() there already - we don't 3262 // Helpers for printing colored strings to stdout. Note that on Windows, we 3274 ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); 3300 fflush(stdout); 3305 fflush(stdout); 3413 fflush(stdout); 3420 fflush(stdout); 3434 fflush(stdout); 3448 fflush(stdout); [all...] |
/third_party/node/deps/googletest/src/ |
H A D | gtest.cc | 3154 fflush(stdout); 3161 // to stdout is done by OutputDebugString() there already - we don't 3274 // Helpers for printing colored strings to stdout. Note that on Windows, we 3286 ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); 3313 fflush(stdout); 3318 fflush(stdout); 3426 fflush(stdout); 3433 fflush(stdout); 3447 fflush(stdout); 3461 fflush(stdout); [all...] |
/third_party/elfutils/src/ |
H A D | readelf.c | 364 (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER); in main() 1099 fputs_unlocked (_("ELF Header:\n Magic: "), stdout); in print_ehdr() 1126 fputs_unlocked (_(" Type: "), stdout); in print_ehdr() 1168 fputs_unlocked (_(" ([0] not available)"), stdout); in print_ehdr() 1170 fputc_unlocked ('\n', stdout); in print_ehdr() 1185 fputs_unlocked (_(" ([0] not available)"), stdout); in print_ehdr() 1187 fputc_unlocked ('\n', stdout); in print_ehdr() 1374 fputc_unlocked ('\n', stdout); in print_shdr() 1520 fputs_unlocked (" [RELRO:", stdout); in print_phdr() 1525 fputs_unlocked ("]", stdout); in print_phdr() [all...] |
/third_party/python/Lib/test/ |
H A D | test_traceback.py | 215 # The spawned subprocess has its stdout redirected to a PIPE, and its 219 "import sys; print(sys.stdout.encoding)"], 220 stdout=subprocess.PIPE, 222 stdout, stderr = process.communicate() 223 output_encoding = str(stdout, 'ascii').splitlines()[0] 235 stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 236 stdout, stderr = process.communicate() 237 stdout = stdout.decode(output_encoding).splitlines() 250 self.assertIn(("line %s" % lineno), stdout[ [all...] |