/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | update_build_version.py | 68 stdout=subprocess.PIPE, 70 (stdout, _) = p.communicate() 73 return stdout
|
/third_party/python/Lib/ |
H A D | _bootsubprocess.py | 88 stdout = fp.read() 90 stdout = b'' 97 return stdout
|
/third_party/skia/third_party/externals/tint/fuzzers/ |
H A D | generate_spirv_corpus.py | 78 stdout=subprocess.PIPE, 80 stdout, stderr = proc.communicate() 83 logged_errors += "Error running " + " ".join(cmd) + ": " + stdout.decode('utf-8') + stderr.decode('utf-8')
|
/third_party/skia/tools/skqp/ |
H A D | run_skqp_exe | 14 sys.stdout.write("adb '" + "' '".join(args) + "'\n") 34 sys.stdout.write("adb 'shell' '%s'\n" % cmd) 53 sys.stdout.write('\nReturn code: %d\nOutput written to "%s"\n' % (ret, report))
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | cmemory.cpp | 49 fflush(stdout); in uprv_malloc() 69 fflush(stdout); in uprv_realloc() 93 fflush(stdout); in uprv_free()
|
/third_party/skia/infra/bots/recipe_modules/flavor/resources/ |
H A D | symbolize_stack_trace.py | 17 # stdout/stderr. This will return with the same error code as the command. 26 # This wrapper function is needed to make sure stdout and stderr stay properly 29 # stdout=api.raw_io.output(), stderr=api.raw_io.output() ended up with 30 # stderr and stdout being separate files, which eliminated the interwoven logs. 31 # Aside from specifying stdout/stderr, there are no ways to capture or reason 38 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 40 for line in iter(proc.stdout.readline, ''): 42 sys.stdout.write(line)
|
/third_party/spirv-tools/utils/ |
H A D | check_symbol_exports.py | 41 stdout=subprocess.PIPE, 44 (stdout, _) = p.communicate() 47 return stdout
|
/third_party/mbedtls/programs/x509/ |
H A D | cert_write.c | 677 fflush(stdout); in main() 693 fflush(stdout); in main() 717 fflush(stdout); in main() 748 fflush(stdout); in main() 778 fflush(stdout); in main() 793 fflush(stdout); in main() 843 fflush(stdout); in main() 869 fflush(stdout); in main() 887 fflush(stdout); in main() 904 fflush(stdout); in main() [all...] |
/third_party/node/test/wasi/c/ |
H A D | stdin.c | 9 if (fputs(x, stdout) == EOF) { in main() 10 return ferror(stdout); in main()
|
/third_party/node/test/fixtures/ |
H A D | catch-stdout-error.js | 24 process.stdout.write('Hello, world\n'); 33 process.stdout.on('error', function(er) {
|
H A D | echo.js | 25 process.stdout.write('hello world\r\n'); 30 process.stdout.write(data.toString());
|
/third_party/mesa3d/src/gallium/drivers/lima/standalone/ |
H A D | glsl.cpp | 32 _mesa_print_ir(stdout, ir, NULL); in lima_do_glsl_optimizations() 34 _mesa_print_ir(stdout, ir, NULL); in lima_do_glsl_optimizations()
|
H A D | lima_compiler_cmdline.c | 136 nir_print_shader(nir, stdout); in load_glsl() 139 nir_print_shader(nir, stdout); in load_glsl() 226 nir_print_shader(nir, stdout); in main() 234 nir_print_shader(nir, stdout); in main()
|
/third_party/cups-filters/filter/pdftopdf/ |
H A D | pdftopdf_jcl.cc | 124 ppdEmit(ppd,stdout,PPD_ORDER_EXIT); in emitPreamble() 164 ppdEmitJCL(ppd,stdout,param.jobId,param.user,param.title); in emitPreamble() 165 emitJCLOptions(stdout,ppd,param.deviceCopies); in emitPreamble() 175 ppdEmitJCLEnd(ppd,stdout); in emitPostamble()
|
/third_party/icu/icu4c/source/samples/coll/ |
H A D | coll.cpp | 257 fprintf(stdout, "Comparing source=%s and target=%s\n", opt_source, in main() 261 fprintf(stdout, "source is equals to target\n"); in main() 264 fprintf(stdout, "source is less than target\n"); in main() 267 fprintf(stdout, "source is greater than target\n"); in main()
|
/third_party/libuv/test/ |
H A D | run-tests.c | 94 print_tests(stdout); in maybe_run_test() 151 fputs(buffer, stdout); in maybe_run_test() 186 r = fprintf(stdout, "hello world\n"); in maybe_run_test() 205 r = fprintf(stdout, "%s", test); in maybe_run_test()
|
/third_party/mbedtls/scripts/ |
H A D | code_style.py | 104 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 110 return str(result.stdout, "utf-8") 120 result = subprocess.run(uncrustify_cmd, stdout=subprocess.PIPE, 138 cp.stdout, cp.stderr)
|
/third_party/ltp/testcases/kernel/controllers/cpuctl/ |
H A D | cpuctl_test02.c | 216 fprintf(stdout, "Grp:-%3d task-%3d:CPU TIME{calc:-%6.2f(s)i.e. %6.2f(%%)exp:-%6.2f(%%)}\ in main() 230 fprintf(stdout, in main() 235 fprintf(stdout, in main() 254 fprintf(stdout, in main()
|
/third_party/node/deps/v8/third_party/test262-harness/test/ |
H A D | test_test262.py | 224 # copied from https://stackoverflow.com/questions/2828953/silence-the-stdout-of-a-function-in-python-without-trashing-sys-stdout-and-resto 229 Decorate a function that prints to stdout, intercepting the output. 233 The decorator litterally hijack sys.stdout during each function 255 saved_stdout = sys.stdout 256 sys.stdout = cStringIO.StringIO() 261 out = sys.stdout.getvalue() 263 sys.stdout = saved_stdout
|
/third_party/ltp/testcases/kernel/mem/mtest07/ |
H A D | shm_test.c | 203 fprintf(stdout, "pid[%d]: shmat_rd_wr(): shmget():" in shmat_rd_wr() 217 fprintf(stdout, in shmat_rd_wr() 298 fprintf(stdout, in main() 307 fprintf(stdout, in main()
|
/third_party/python/Tools/scripts/ |
H A D | objgraph.py | 142 savestdout = sys.stdout 143 sys.stdout = sys.stderr 149 sys.stdout = savestdout 157 sys.stdout = sys.stderr
|
/third_party/python/Lib/ctypes/ |
H A D | _aix.py | 77 for line in p.stdout: 89 for line in p.stdout: 109 universal_newlines=True, stdout=PIPE, stderr=DEVNULL) 117 p.stdout.close()
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | check_copyright.py | 142 sys.stdout.write(copyright) 143 sys.stdout.write(licensed) 159 sys.stdout.write(licensed) 161 sys.stdout.write(line)
|
/third_party/openssl/demos/cipher/ |
H A D | aeskeywrap.c | 66 BIO_dump_fp(stdout, wrap_pt, sizeof(wrap_pt)); in aes_wrap_encrypt() 96 BIO_dump_fp(stdout, outbuf, outlen); in aes_wrap_encrypt() 124 BIO_dump_fp(stdout, wrap_ct, sizeof(wrap_ct)); in aes_wrap_decrypt() 153 BIO_dump_fp(stdout, outbuf, outlen); in aes_wrap_decrypt()
|
H A D | ariacbc.c | 67 BIO_dump_fp(stdout, cbc_pt, sizeof(cbc_pt)); in aria_cbc_encrypt() 95 BIO_dump_fp(stdout, outbuf, outlen); in aria_cbc_encrypt() 124 BIO_dump_fp(stdout, cbc_ct, sizeof(cbc_ct)); in aria_cbc_decrypt() 151 BIO_dump_fp(stdout, outbuf, outlen); in aria_cbc_decrypt()
|