/third_party/python/Lib/test/ |
H A D | test_gdb.py | 22 stdout=subprocess.PIPE, 31 f"stdout={version!r} stderr={stderr!r}") 92 Returns its (stdout, stderr) decoded from utf-8 using the replace handler. 108 stdout=subprocess.PIPE, 132 stdout, _ = run_gdb("--eval-command=python print(dir(gdb.Frame))") 133 m = re.match(r'.*\[(.*)\].*', stdout) 158 Returns the stdout from gdb 228 # Use "args" to invoke gdb, capturing stdout, stderr: 666 gdb_repr, gdb_output = self.get_gdb_repr('import sys; id(sys.stdout.readlines)') namespace
|
H A D | test_signal.py | 698 sys.stdout.flush() 720 first_line = process.stdout.readline() 722 stdout, stderr = process.communicate(timeout=support.SHORT_TIMEOUT) 727 stdout = first_line + stdout 731 % (exitcode, stdout)) 1192 stdout, stderr = process.communicate() 1196 (exitcode, stdout))
|
H A D | test_support.py | 70 self.assertEqual(support.get_original_stdout(), sys.stdout) 338 with support.captured_stdout() as stdout: 340 self.assertEqual(stdout.getvalue(), "hello\n") 504 stdout=subprocess.PIPE, 510 self.assertEqual(proc.stdout.rstrip(), repr(expected))
|
/third_party/ltp/testcases/kernel/fs/fsx-linux/ |
H A D | fsx-linux.c | 156 vfprintf(stdout, fmt, args); in prt() 1048 fprintf(stdout, "usage: %s", in usage() 1125 setvbuf(stdout, NULL, _IOLBF, 0); /* line buffered stdout */ in main() 1134 fprintf(stdout, "Will begin at operation" in main() 1143 fprintf(stdout, in main() 1239 fprintf(stdout, "Seed set to %d\n", seed); in main() 1246 fprintf(stdout, "mapped writes DISABLED\n"); in main()
|
/third_party/ltp/testcases/kernel/security/tomoyo/ |
H A D | tomoyo_filesystem_test.c | 52 fflush(stdout); in mount2() 521 fflush(stdout); in main() 527 fflush(stdout); in main() 534 fflush(stdout); in main() 540 fflush(stdout); in main() 549 fflush(stdout); in main() 555 fflush(stdout); in main()
|
/third_party/f2fs-tools/tools/ |
H A D | f2fscrypt.c | 844 fputc('\n', stdout); in do_get_policy() 900 putc('\n', stdout); in do_help() 901 fputs("USAGE:\n ", stdout); in do_help() 902 fputs(p->cmd_help, stdout); in do_help() 909 fputs("Available commands:\n", stdout); in do_help()
|
/third_party/littlefs/scripts/ |
H A D | cov.py | 204 # allow '-' for stdin/stdout 209 return os.fdopen(os.dup(sys.stdout.fileno()), mode, buffering) 226 stdout=sp.PIPE, 231 data = json.load(proc.stdout) 236 sys.stdout.write(line) 590 args['color'] = sys.stdout.isatty()
|
/third_party/python/Lib/asyncio/ |
H A D | windows_events.py | 396 stdin, stdout, stderr, bufsize, 400 stdin, stdout, stderr, bufsize, 920 def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs): 922 args, shell=shell, stdin=stdin, stdout=stdout, stderr=stderr,
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | test_shaders.py | 89 p = subprocess.Popen(['malisc', get_shader_type(shader), '--core', 'Mali-T760', '-V', shader], stdout = subprocess.PIPE, stderr = subprocess.PIPE) 90 stdout, stderr = p.communicate() 98 returned = stdout.decode('utf-8') 115 stdin = subprocess.DEVNULL, stdout = subprocess.DEVNULL, stderr = subprocess.DEVNULL) 372 with subprocess.Popen(['winepath', '-w', shader], stdout = subprocess.PIPE, stderr = subprocess.PIPE) as f:
|
/third_party/elfutils/tests/ |
H A D | dwfl-addr-sect.c | 56 (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER); in main()
|
H A D | dwfl-report-elf-align.c | 41 (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER); in main()
|
H A D | dwfl-bug-addr-overflow.c | 38 (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER); in main()
|
H A D | dwfl-report-segment-contiguous.c | 38 (void) __fsetlocking (stdout, FSETLOCKING_BYCALLER); in main()
|
/third_party/curl/tests/unit/ |
H A D | unit1308.c | 41 fwrite(buf, len, 1, stdout); in print_httppost_callback()
|
/third_party/elfio/tests/elf_examples/ |
H A D | asm.s | 11 mov ebx,1 ;file descriptor (stdout)
|
/third_party/libabigail/tests/ |
H A D | update-test-output.py | 67 sys.stdout.write("cp " + source + " " + dest + "\n");
|
/third_party/mbedtls/programs/x509/ |
H A D | crl_app.c | 96 fflush(stdout); in main()
|
H A D | req_app.c | 96 fflush(stdout); in main()
|
/third_party/mbedtls/programs/random/ |
H A D | gen_random_ctr_drbg.c | 105 fflush(stdout); in main()
|
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_gather_types_c.py | 28 from sys import stdout namespace
|
/third_party/node/test/parallel/ |
H A D | test-assert-checktag.js | 6 // message comparisons. This should only be an issue when process.stdout 8 if (process.stdout.isTTY)
|
H A D | test-child-process-validate-stdio.js | 47 const stdio3 = [process.stdin, process.stdout, process.stderr];
|
/third_party/node/test/tick-processor/ |
H A D | test-tick-processor-polyfill-brokenfile.js | 43 proc.stdout.on('data', (chunk) => ticks += chunk);
|
/third_party/node/deps/v8/tools/wasm-compilation-hints/ |
H A D | inject-compilation-hints.py | 33 out_wasm_file = args.out_wasm_file if args.out_wasm_file else sys.stdout.fileno()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | format_fallback.py | 29 from sys import stdout namespace
|