/Zephyr-Core-2.7.6/cmake/ |
D | git.cmake | 23 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/ |
D | errno.py | 40 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)
|
D | check_compliance.py | 41 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/ |
D | lint.py | 303 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)
|
D | kconfig.py | 76 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/ |
D | getincludes.py | 32 cp = run(cmd, stdout=PIPE, stderr=PIPE, universal_newlines=True) 38 return extractIncludes(cp.stderr)
|
/Zephyr-Core-2.7.6/boards/posix/native_posix/ |
D | tracing.c | 24 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/ |
D | stdout_console.c | 30 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/ |
D | create_keys.py | 74 stderr=subprocess.STDOUT) 100 stderr=subprocess.STDOUT)
|
/Zephyr-Core-2.7.6/samples/posix/eventfd/src/ |
D | main.c | 64 fprintf(stderr, "Usage: %s <num>...\n", argv[0]); in main()
|
/Zephyr-Core-2.7.6/scripts/footprint/ |
D | compare_footprint | 104 stderr=subprocess.STDOUT, cwd=cwd, shell=True) 110 stderr=subprocess.STDOUT, 149 stderr=subprocess.STDOUT,
|
D | track.py | 52 … subprocess.check_output(cmd, stderr=subprocess.STDOUT, timeout=120, universal_newlines=True)
|
/Zephyr-Core-2.7.6/boards/posix/nrf52_bsim/ |
D | main.c | 71 setvbuf(stderr, NULL, _IOLBF, 512); in main()
|
/Zephyr-Core-2.7.6/lib/libc/minimal/include/ |
D | stdio.h | 32 #define stderr ((FILE *) 3) macro
|
/Zephyr-Core-2.7.6/scripts/ |
D | get_maintainer.py | 506 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")))
|
D | parse_syscalls.py | 88 sys.stderr.write("While parsing %s\n" % fn)
|
/Zephyr-Core-2.7.6/boards/xtensa/intel_s1000_crb/support/ |
D | device.py | 89 print('Error: Device not ready', file=sys.stderr)
|
/Zephyr-Core-2.7.6/drivers/console/ |
D | native_posix_console.c | 40 setvbuf(stderr, NULL, _IOLBF, 512); in native_posix_stdout_init()
|
/Zephyr-Core-2.7.6/doc/ |
D | conf.py | 57 sys.stderr.write("Warning: Could not extract kernel version\n")
|
/Zephyr-Core-2.7.6/boards/xtensa/intel_adsp_cavs15/tools/ |
D | adsplog.py | 69 sys.stderr.write("ERROR: No ADSP device found.\n")
|
/Zephyr-Core-2.7.6/scripts/west_commands/ |
D | zcmake.py | 276 version_out = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
|
/Zephyr-Core-2.7.6/doc/guides/ |
D | coccinelle.rst | 205 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/ |
D | main.c | 864 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/ |
D | doxyrunner.py | 277 p = Popen([doxygen, f_doxyfile.name], stdout=PIPE, stderr=STDOUT, encoding="utf-8")
|
/Zephyr-Core-2.7.6/scripts/pylib/twister/ |
D | harness.py | 173 stderr = subprocess.PIPE) as proc:
|