Home
last modified time | relevance | path

Searched refs:stderr (Results 1 – 25 of 37) sorted by relevance

12

/Zephyr-Core-2.7.6/cmake/
Dgit.cmake23 ERROR_VARIABLE stderr
27 message(STATUS "git describe failed: ${stderr}")
28 elseif(NOT "${stderr}" STREQUAL "")
29 message(STATUS "git describe warned: ${stderr}")
/Zephyr-Core-2.7.6/scripts/ci/
Derrno.py40 print(f'Environment variable missing: {e}', file=sys.stderr)
49 print('Invalid entry in errno.h:', file=sys.stderr)
50 print(f'{e[0]} (with value {e[1]})', file=sys.stderr)
Dcheck_compliance.py41 git_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=cwd)
45 stdout, stderr = git_process.communicate()
47 stderr = stderr.decode("utf-8")
48 if git_process.returncode or stderr:
211 stderr=subprocess.STDOUT,
252 _ = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
805 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
852 stderr=subprocess.PIPE,
857 stdout, stderr = process.communicate()
858 if process.returncode or stderr:
[all …]
/Zephyr-Core-2.7.6/scripts/kconfig/
Dlint.py303 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=cwd)
307 stdout, stderr = process.communicate()
311 stderr = stderr.decode("utf-8")
319 {}""".format(cmd_s, process.returncode, stdout, stderr))
321 if stderr:
322 warn("'{}' wrote to stderr:\n{}".format(cmd_s, stderr))
332 print(executable() + "warning: " + msg, file=sys.stderr)
Dkconfig.py76 print("\n" + warning, file=sys.stderr)
256 print("\n" + textwrap.fill("warning: " + msg, 100) + "\n", file=sys.stderr)
/Zephyr-Core-2.7.6/scripts/west_commands/zspdx/
Dgetincludes.py32 cp = run(cmd, stdout=PIPE, stderr=PIPE, universal_newlines=True)
38 return extractIncludes(cp.stderr)
/Zephyr-Core-2.7.6/boards/posix/native_posix/
Dtracing.c24 vfprintf(stderr, format, variable_args); in posix_print_error_and_exit()
34 vfprintf(stderr, format, variable_args); in posix_print_warning()
/Zephyr-Core-2.7.6/lib/libc/minimal/source/stdout/
Dstdout_console.c30 return (stream == stdout || stream == stderr) ? _stdout_hook(c) : EOF; in z_impl_zephyr_fputc()
63 if ((stream != stdout && stream != stderr) || in z_impl_zephyr_fwrite()
/Zephyr-Core-2.7.6/samples/net/cloud/google_iot_mqtt/src/private_info/
Dcreate_keys.py74 stderr=subprocess.STDOUT)
100 stderr=subprocess.STDOUT)
/Zephyr-Core-2.7.6/samples/posix/eventfd/src/
Dmain.c64 fprintf(stderr, "Usage: %s <num>...\n", argv[0]); in main()
/Zephyr-Core-2.7.6/scripts/footprint/
Dcompare_footprint104 stderr=subprocess.STDOUT, cwd=cwd, shell=True)
110 stderr=subprocess.STDOUT,
149 stderr=subprocess.STDOUT,
Dtrack.py52 … subprocess.check_output(cmd, stderr=subprocess.STDOUT, timeout=120, universal_newlines=True)
/Zephyr-Core-2.7.6/boards/posix/nrf52_bsim/
Dmain.c71 setvbuf(stderr, NULL, _IOLBF, 512); in main()
/Zephyr-Core-2.7.6/lib/libc/minimal/include/
Dstdio.h32 #define stderr ((FILE *) 3) macro
/Zephyr-Core-2.7.6/scripts/
Dget_maintainer.py506 git_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
514 stdout, stderr = git_process.communicate()
517 git_cmd_s, stdout.decode("utf-8"), stderr.decode("utf-8")))
Dparse_syscalls.py88 sys.stderr.write("While parsing %s\n" % fn)
/Zephyr-Core-2.7.6/boards/xtensa/intel_s1000_crb/support/
Ddevice.py89 print('Error: Device not ready', file=sys.stderr)
/Zephyr-Core-2.7.6/drivers/console/
Dnative_posix_console.c40 setvbuf(stderr, NULL, _IOLBF, 512); in native_posix_stdout_init()
/Zephyr-Core-2.7.6/doc/
Dconf.py57 sys.stderr.write("Warning: Could not extract kernel version\n")
/Zephyr-Core-2.7.6/boards/xtensa/intel_adsp_cavs15/tools/
Dadsplog.py69 sys.stderr.write("ERROR: No ADSP device found.\n")
/Zephyr-Core-2.7.6/scripts/west_commands/
Dzcmake.py276 version_out = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
/Zephyr-Core-2.7.6/doc/guides/
Dcoccinelle.rst205 by asking for stderr to be redirected to stderr, by default stderr
206 is redirected to /dev/null, if you'd like to capture stderr you
/Zephyr-Core-2.7.6/tests/lib/sprintf/src/
Dmain.c864 ret = fputs("This 3\n", stderr); in test_put()
885 ret = fputc('T', stderr); in test_put()
/Zephyr-Core-2.7.6/doc/_extensions/zephyr/
Ddoxyrunner.py277 p = Popen([doxygen, f_doxyfile.name], stdout=PIPE, stderr=STDOUT, encoding="utf-8")
/Zephyr-Core-2.7.6/scripts/pylib/twister/
Dharness.py173 stderr = subprocess.PIPE) as proc:

12