Home
last modified time | relevance | path

Searched refs:stderr (Results 626 - 650 of 5501) sorted by relevance

1...<<21222324252627282930>>...221

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_debug.cpp39 fflush(stderr); in sync()
45 fputc(c, stderr); in overflow()
77 fputc(*s++, stderr); in xsputn()
107 nir_print_shader(&sh, stderr); in operator <<()
114 nir_print_instr(&instr, stderr); in operator <<()
/third_party/node/test/pummel/
H A Dtest-regress-GH-892.js67 child.stderr.pipe(process.stderr);
71 // Buffer the stderr so that we can check that it got 'DONE'
72 child.stderr.setEncoding('ascii');
73 child.stderr.on('data', function(d) {
93 process.stderr.write('.');
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_4/
H A Dtirpc_svc_4.c59 fprintf(stderr, "Cannot get netconfig entry for UDP\n"); in main()
66 fprintf(stderr, "Cannot create service.\n"); in main()
71 fprintf(stderr, "svc_reg failed!!\n"); in main()
77 fprintf(stderr, "svc_run() returned. ERROR has occurred.\n"); in main()
133 (void)fprintf(stderr, "unable to free arguments\n"); in exm_proc()
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/tirpc_svc_11/
H A Dtirpc_svc_11.c58 fprintf(stderr, "Cannot get netconfig entry for UDP\n"); in main()
65 fprintf(stderr, "Cannot create service.\n"); in main()
70 fprintf(stderr, "svc_reg failed!!\n"); in main()
76 fprintf(stderr, "svc_run() returned. ERROR has occurred.\n"); in main()
150 (void)fprintf(stderr, "unable to free arguments\n"); in exm_proc()
/third_party/python/Tools/scripts/
H A Dfinddiv.py46 sys.stderr.write("%s: %s\n" % (sys.argv[0], msg))
47 sys.stderr.write("Usage: %s [-l] file ...\n" % sys.argv[0])
48 sys.stderr.write("Try `%s -h' for more information.\n" % sys.argv[0])
56 sys.stderr.write("Can't open: %s\n" % msg)
74 sys.stderr.write("Can't list directory: %s\n" % dir)
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
H A Dreadppm.c75 fprintf(stderr, " Compiled without libpng, zlib or PBMPLUS/NetPBM.\n"); in readpng_version_info()
91 fprintf(stderr, "ERROR: not a PPM file\n"); in readpng_init()
116 fprintf(stderr, "ERROR: maxval = %d\n", maxval); in readpng_init()
157 Trace((stderr, "readpng_get_image: rowbytes = %ld, height = %ld\n", rowbytes, height)); in readpng_get_image()
161 fprintf(stderr, PROGNAME ": image_data buffer would be too large\n", in readpng_get_image()
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/
H A Dtest_https_multi_daemon.c62 fprintf (stderr, MHD_E_SERVER_INIT); in test_concurent_daemon_pair()
76 fprintf (stderr, MHD_E_SERVER_INIT); in test_concurent_daemon_pair()
106 fprintf (stderr, "Error (code: %u). l:%d f:%s\n", errorCount, __LINE__, in main()
112 fprintf (stderr, MHD_E_TEST_FILE_CREAT); in main()
130 fprintf (stderr, in main()
/third_party/skia/infra/bots/
H A Dinfra_tests.py24 subprocess.check_output(cmd, cwd=cwd, stderr=subprocess.STDOUT)
77 print('Test failures:\n', file=sys.stderr)
79 print('==============================', file=sys.stderr)
80 print(err, file=sys.stderr)
81 print('==============================', file=sys.stderr)
/third_party/ffmpeg/tools/
H A Dismindex.c58 fprintf(stderr, "%s [-split] [-ismf] [-n basename] [-path-prefix prefix] " in usage()
100 fprintf(stderr, "wanted tag %.4s, got %.4s\n", expected_tag_str, in expect_tag()
123 fprintf(stderr, "short read, wanted %d, got %d\n", len, got); in copy_tag()
153 fprintf(stderr, "Unable to open %s: %s\n", filename, errbuf); in write_fragment()
216 fprintf(stderr, "failed fragment %d in track %d (%s)\n", j, in write_fragments()
240 fprintf(stderr, "No sample duration in trun flags\n"); in read_trun_duration()
257 fprintf(stderr, "Negative sample duration %d\n", sample_duration); in read_trun_duration()
311 fprintf(stderr, "Couldn't find trun\n"); in read_moof_duration()
316 fprintf(stderr, "Couldn't find traf\n"); in read_moof_duration()
387 fprintf(stderr, "Calculate in read_tfra()
[all...]
/build/scripts/util/
H A Dbuild_utils.py224 fail_func=lambda returncode, stderr: returncode != 0):
237 child = subprocess.Popen(execute_args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
241 stderr=subprocess.PIPE,
244 stdout, stderr = child.communicate()
250 stderr = stderr_filter(stderr)
253 if isinstance(stderr, bytes):
254 stderr = stderr.decode()
256 if fail_func(child.returncode, stderr)
[all...]
/third_party/node/deps/v8/tools/gcmole/
H A Dgcmole.py139 p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
140 stdout, stderr = p.communicate()
141 return p.returncode, stdout.decode("utf-8"), stderr.decode("utf-8")
150 ret, stdout, stderr = invoke_clang_plugin_for_file(
152 output_queue.put_nowait((filename, ret, stdout, stderr))
172 returncode, stdout, stderr = invoke_clang_plugin_for_file(
175 sys.stderr.write(stderr)
177 yield filename, stdout, stderr
209 filename, returncode, stdout, stderr
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dtests.rs24 // bindings, and rustfmt's stderr.
41 .stderr(process::Stdio::null()) in rustfmt()
75 .stderr(process::Stdio::piped()) in rustfmt()
81 let mut stderr = child.stderr.take().unwrap(); in rustfmt() variables
89 // Read stderr on a new thread for similar reasons. in rustfmt()
92 io::copy(&mut stderr, &mut output) in rustfmt()
111 let stderr = stderr_handle in rustfmt()
113 .expect("stderr reader thread should not have panicked") in rustfmt()
114 .expect("should have read child rustfmt's stderr O in rustfmt()
[all...]
/third_party/alsa-utils/alsactl/
H A Dutils.c139 fprintf(stderr, "%s: %s:%ld: ", command, fcn, line); in error_()
140 vfprintf(stderr, fmt, ap); in error_()
141 putc('\n', stderr); in error_()
156 fprintf(stderr, "%s: %s:%ld: ", command, fcn, line); in cerror_()
157 vfprintf(stderr, fmt, ap); in cerror_()
158 putc('\n', stderr); in cerror_()
173 fprintf(stderr, "%s: %s:%ld: ", command, fcn, line); in dbg_()
174 vfprintf(stderr, fmt, ap); in dbg_()
175 putc('\n', stderr); in dbg_()
192 fprintf(stderr, "als in error_handler()
[all...]
/third_party/cups-filters/cupsfilters/
H A Dimage-bmp.c95 fprintf(stderr, "DEBUG: offset = %d\n", offset); in _cupsImageReadBMP()
99 fprintf(stderr, "DEBUG: Bad BMP offset %d\n", offset); in _cupsImageReadBMP()
124 fprintf(stderr, "DEBUG: Bad BMP dimensions %ux%ux%d\n", in _cupsImageReadBMP()
132 fprintf(stderr, "DEBUG: Bad BMP colormap size %d\n", colors_used); in _cupsImageReadBMP()
139 fprintf(stderr, "DEBUG: Bad BMP resolution %dx%d PPI.\n", in _cupsImageReadBMP()
148 fprintf(stderr, "info_size = %d, xsize = %d, ysize = %d, planes = %d, depth = %d\n", in _cupsImageReadBMP()
150 fprintf(stderr, "compression = %d, image_size = %d, xppi = %d, yppi = %d\n", in _cupsImageReadBMP()
152 fprintf(stderr, "colors_used = %d, colors_important = %d\n", colors_used, in _cupsImageReadBMP()
184 fputs("DEBUG: Unable to allocate memory!\n", stderr); in _cupsImageReadBMP()
191 fputs("DEBUG: Unable to allocate memory!\n", stderr); in _cupsImageReadBMP()
[all...]
/third_party/libdrm/exynos/
H A Dexynos_drm.c57 fprintf(stderr, "failed to create device[%s].\n", in exynos_device_create()
100 fprintf(stderr, "invalid size.\n"); in exynos_bo_create()
106 fprintf(stderr, "failed to create bo[%s].\n", in exynos_bo_create()
114 fprintf(stderr, "failed to create gem object[%s].\n", in exynos_bo_create()
154 fprintf(stderr, "failed to get gem object information[%s].\n", in exynos_bo_get_info()
208 fprintf(stderr, "failed to allocate bo[%s].\n", in exynos_bo_from_name()
214 fprintf(stderr, "failed to open gem object[%s].\n", in exynos_bo_from_name()
251 fprintf(stderr, "failed to get gem global name[%s].\n", in exynos_bo_get_name()
290 fprintf(stderr, "failed to map dumb buffer[%s].\n", in exynos_bo_map()
365 fprintf(stderr, "faile in exynos_vidi_connection()
[all...]
/third_party/node/test/parallel/
H A Dtest-runner-cli.js19 assert.match(child.stderr.toString(), /^Could not find/);
30 assert.strictEqual(child.stderr.toString(), '');
54 assert.strictEqual(child.stderr.toString(), '');
64 assert.strictEqual(child.stderr.toString(), '');
76 assert.strictEqual(child.stderr.toString(), '');
89 assert.strictEqual(child.stderr.toString(), '');
114 const stderr = child.stderr.toString();
115 assert.match(stderr, /--test/);
132 assert.strictEqual(child.stderr
[all...]
/third_party/node/tools/gyp/pylib/gyp/
H A Dwin_tool.py140 stderr=subprocess.STDOUT,
231 print(filename, file=sys.stderr)
232 print("-----", file=sys.stderr)
234 print(f.read(), file=sys.stderr)
235 print("-----", file=sys.stderr)
240 sys.stderr.write(
254 args, shell=True, env=env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
298 args, shell=True, env=env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
317 args, shell=True, env=env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
335 args, shell=True, env=env, stdout=subprocess.PIPE, stderr
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dwin_tool.py140 stderr=subprocess.STDOUT,
230 print(filename, file=sys.stderr)
231 print("-----", file=sys.stderr)
233 print(f.read(), file=sys.stderr)
234 print("-----", file=sys.stderr)
239 sys.stderr.write(
253 args, shell=True, env=env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
297 args, shell=True, env=env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
316 args, shell=True, env=env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
334 args, shell=True, env=env, stdout=subprocess.PIPE, stderr
[all...]
/third_party/libdrm/tests/ttmtest/src/
H A Dttmtest.c113 fprintf(stderr, "Fatal video memory manager error \"%s\".\n" in bmError()
313 fprintf(stderr, "Buffer error %s\n", strerror(-ret)); in testAGP()
359 fprintf(stderr, "Could not open display\n"); in main()
368 fprintf(stderr, "No DRI on this display:sceen\n"); in main()
374 fprintf(stderr, "Could not open DRI connection.\n"); in main()
382 fprintf(stderr, "Could not get DRI driver name.\n"); in main()
390 fprintf(stderr, "Could not get DRI device info.\n"); in main()
403 fprintf(stderr, "Could not get X server to authenticate us.\n"); in main()
413 fprintf(stderr, "Could not find a matching visual.\n"); in main()
420 fprintf(stderr, "Coul in main()
[all...]
/third_party/ltp/testcases/kernel/mem/mtest05/
H A Dmmstress.c139 fprintf(stderr, in sig_handler()
150 fprintf(stderr, "usage:%s -h -n test -t time -v [-V]\n", progname); in usage()
151 fprintf(stderr, "\t-h displays all options\n"); in usage()
152 fprintf(stderr, "\t-n test number, if no test number\n" in usage()
154 fprintf(stderr, "\t-p specify the number of pages to\n" in usage()
156 fprintf(stderr, "\t-t specify the time in hours\n"); in usage()
157 fprintf(stderr, "\t-v verbose output\n"); in usage()
158 fprintf(stderr, "\t-V program version\n"); in usage()
675 setvbuf(stderr, NULL, _IONBF, 0); in main()
704 fprintf(stderr, in main()
[all...]
/third_party/python/Lib/asyncio/
H A Dbase_subprocess.py13 stdin, stdout, stderr, bufsize,
31 if stderr == subprocess.PIPE:
37 stderr=stderr, bufsize=bufsize, **kwargs)
73 stderr = self._pipes.get(2)
74 if stdout is not None and stderr is stdout:
75 info.append(f'stdout=stderr={stdout.pipe}')
79 if stderr is not None:
80 info.append(f'stderr={stderr
[all...]
/third_party/node/deps/openssl/openssl/engines/
H A De_devcrypto.c612 fprintf(stderr, "devcrypto: unknown cipher %s\n", name); in cryptodev_select_cipher_cb()
616 fprintf(stderr, "devcrypto: cipher %s not available\n", name); in cryptodev_select_cipher_cb()
626 fprintf (stderr, "Information about ciphers supported by the /dev/crypto" in dump_cipher_info()
629 fprintf(stderr, "CIOCGSESSINFO (session info call) unavailable\n"); in dump_cipher_info()
633 fprintf (stderr, "Cipher %s, NID=%d, /dev/crypto info: id=%d, ", in dump_cipher_info()
637 fprintf (stderr, "CIOCGSESSION (session open call) failed\n"); in dump_cipher_info()
640 fprintf (stderr, "driver=%s ", cipher_driver_info[i].driver_name ? in dump_cipher_info()
643 fprintf(stderr, "(hw accelerated)"); in dump_cipher_info()
645 fprintf(stderr, "(software)"); in dump_cipher_info()
647 fprintf(stderr, "(acceleratio in dump_cipher_info()
[all...]
/third_party/openssl/engines/
H A De_devcrypto.c612 fprintf(stderr, "devcrypto: unknown cipher %s\n", name); in cryptodev_select_cipher_cb()
616 fprintf(stderr, "devcrypto: cipher %s not available\n", name); in cryptodev_select_cipher_cb()
626 fprintf (stderr, "Information about ciphers supported by the /dev/crypto" in dump_cipher_info()
629 fprintf(stderr, "CIOCGSESSINFO (session info call) unavailable\n"); in dump_cipher_info()
633 fprintf (stderr, "Cipher %s, NID=%d, /dev/crypto info: id=%d, ", in dump_cipher_info()
637 fprintf (stderr, "CIOCGSESSION (session open call) failed\n"); in dump_cipher_info()
640 fprintf (stderr, "driver=%s ", cipher_driver_info[i].driver_name ? in dump_cipher_info()
643 fprintf(stderr, "(hw accelerated)"); in dump_cipher_info()
645 fprintf(stderr, "(software)"); in dump_cipher_info()
647 fprintf(stderr, "(acceleratio in dump_cipher_info()
[all...]
/third_party/alsa-utils/aplay/
H A Daplay.c193 fprintf(stderr, "%s: %s:%d: ", command, __func__, __LINE__); \
194 fprintf(stderr, __VA_ARGS__); \
195 putc('\n', stderr); \
199 fprintf(stderr, "%s: %s:%d: ", command, __func__, __LINE__); \
200 fprintf(stderr, ##args); \
201 putc('\n', stderr); \
405 fprintf(stderr, _("Aborted by signal %s...\n"), strsignal(sig)); in signal_handler()
546 err = snd_output_stdio_attach(&log, stderr, 0);
828 fprintf(stderr, _("Unable to parse channel map string: %s\n"), optarg);
834 fprintf(stderr,
[all...]
/third_party/curl/tests/libtest/
H A Dlib598.c34 fprintf(stderr, "curl_global_init() failed\n"); in test()
40 fprintf(stderr, "curl_easy_init() failed\n"); in test()
54 fprintf(stderr, "retrieve 1 failed\n"); in test()
66 fprintf(stderr, "retrieve 2 failed\n"); in test()

Completed in 16 milliseconds

1...<<21222324252627282930>>...221