/Zephyr-latest/lib/libc/picolibc/ |
D | stdio.c | 11 int z_impl_zephyr_fputc(int a, FILE *out) in z_impl_zephyr_fputc() 18 static inline int z_vrfy_zephyr_fputc(int c, FILE *stream) in z_vrfy_zephyr_fputc() 25 static int picolibc_put(char a, FILE *f) in picolibc_put() 31 static LIBC_DATA FILE __stdout = FDEV_SETUP_STREAM(picolibc_put, NULL, NULL, 0); 32 static LIBC_DATA FILE __stdin = FDEV_SETUP_STREAM(NULL, NULL, NULL, 0); 37 #define STDIO_ALIAS(x) FILE *const x = &__stdout; 40 FILE *const stdin = &__stdin; 41 FILE *const stdout = &__stdout; 52 __stdin.get = (int (*)(FILE *)) hook; in __stdin_hook_install()
|
D | cbprintf.c | 10 FILE f; 15 static int cbputc(char c, FILE *_s) in cbputc()
|
/Zephyr-latest/lib/libc/minimal/include/ |
D | stdio.h | 22 typedef int FILE; typedef 29 #define stdin ((FILE *) 1) 30 #define stdout ((FILE *) 2) 31 #define stderr ((FILE *) 3) 42 int __printf_like(2, 3) fprintf(FILE *ZRESTRICT stream, 52 int __printf_like(2, 0) vfprintf(FILE *ZRESTRICT stream, 59 int fputc(int c, FILE *stream); 60 int fputs(const char *ZRESTRICT s, FILE *ZRESTRICT stream); 62 FILE *ZRESTRICT stream);
|
/Zephyr-latest/lib/libc/minimal/source/stdout/ |
D | stdout_console.c | 28 int z_impl_zephyr_fputc(int c, FILE *stream) in z_impl_zephyr_fputc() 34 static inline int z_vrfy_zephyr_fputc(int c, FILE *stream) in z_vrfy_zephyr_fputc() 41 int fputc(int c, FILE *stream) in fputc() 46 int fputs(const char *ZRESTRICT s, FILE *ZRESTRICT stream) in fputs() 57 int putc(int c, FILE *stream) in putc() 69 size_t nitems, FILE *ZRESTRICT stream) in z_impl_zephyr_fwrite() 101 FILE *ZRESTRICT stream) in z_vrfy_zephyr_fwrite() 111 FILE *ZRESTRICT stream) in fwrite()
|
D | fprintf.c | 15 int fprintf(FILE *ZRESTRICT stream, const char *ZRESTRICT format, ...) in fprintf() 27 int vfprintf(FILE *ZRESTRICT stream, const char *ZRESTRICT format, in vfprintf()
|
/Zephyr-latest/subsys/tracing/ |
D | tracing_backend_posix_bottom.c | 13 FILE *f; in tracing_backend_posix_init_bottom() 26 int rc = fwrite(data, length, 1, (FILE *)out_stream); in tracing_backend_posix_output_bottom() 32 fflush((FILE *)out_stream); in tracing_backend_posix_output_bottom()
|
/Zephyr-latest/scripts/ |
D | coccicheck | 72 FILE="${i#*=}" 73 if [ ! -e "$FILE" ]; then 84 if [ "$FILE" = "" ] ; then 87 OPTIONS="--dir $FILE" 98 if [ "$FILE" != "" ] ; then 172 FILE=${COCCI#$ZEPHYR_BASE/} 192 echo " in $FILE."
|
/Zephyr-latest/tests/subsys/storage/flash_map/ |
D | CMakeLists.txt | 8 FILE(GLOB app_sources src/main.c) 10 FILE(GLOB app_sources src/main_sha.c)
|
/Zephyr-latest/tests/subsys/fs/ext2/ |
D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c) 8 FILE(GLOB common_sources
|
/Zephyr-latest/tests/cmake/yaml/ |
D | CMakeLists.txt | 130 yaml_save(NAME yaml-test FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_save.yaml) 133 yaml_load(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_save.yaml 152 yaml_create(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_create.yaml 164 yaml_load(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_create.yaml 176 yaml_create(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_create.yaml 188 yaml_load(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_create.yaml 208 yaml_create(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_create.yaml 220 yaml_load(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_create.yaml 232 yaml_create(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_create.yaml 244 yaml_load(FILE ${CMAKE_BINARY_DIR}/${CMAKE_CURRENT_FUNCTION}_test_create.yaml [all …]
|
/Zephyr-latest/tests/bsim/bluetooth/ll/edtt/gatt_test_app/ |
D | CMakeLists.txt | 9 FILE(GLOB app_sources src/*.c) 10 FILE(GLOB gatt_sources src/gatt/*.c)
|
/Zephyr-latest/tests/bsim/bluetooth/host/gatt/settings/src/ |
D | settings.c | 37 static int entry_check_and_copy(FILE *fin, FILE *fout, const char *name) in entry_check_and_copy() 80 FILE *fp = fopen(SETTINGS_FILE, "r+"); in settings_custom_load() 131 FILE *fcur = fopen(SETTINGS_FILE, "r+"); in settings_custom_save() 132 FILE *fnew = NULL; in settings_custom_save()
|
/Zephyr-latest/include/zephyr/sys/ |
D | libc-hooks.h | 36 __syscall int zephyr_fputc(int c, FILE * stream); 42 size_t nitems, FILE *ZRESTRICT stream);
|
/Zephyr-latest/cmake/modules/ |
D | yaml.cmake | 106 # yaml_create(NAME <name> [FILE <file>]) 116 # FILE <file>: Path to file to be used together with this YAML context. 119 cmake_parse_arguments(ARG_YAML "" "FILE;NAME" "" ${ARGN}) 126 zephyr_set(FILE ${ARG_YAML_FILE} SCOPE ${ARG_YAML_NAME}) 132 # yaml_load(FILE <file> NAME <name>) 139 # FILE <file>: Path to file to load. 143 cmake_parse_arguments(ARG_YAML "" "FILE;NAME" "" ${ARGN}) 145 zephyr_check_arguments_required_all(${CMAKE_CURRENT_FUNCTION} ARG_YAML FILE NAME) 149 zephyr_set(FILE ${ARG_YAML_FILE} SCOPE ${ARG_YAML_NAME}) 346 # yaml_save(NAME <name> [FILE <file>]) [all …]
|
/Zephyr-latest/lib/posix/options/ |
D | device_io.c | 18 FILE *zvfs_fdopen(int fd, const char *mode); 19 int zvfs_fileno(FILE *file); 52 FILE *fdopen(int fd, const char *mode) in fdopen() 57 int fileno(FILE *file) in fileno()
|
/Zephyr-latest/lib/os/ |
D | printk.c | 70 FILE file; 111 .file = FDEV_SETUP_STREAM((int(*)(char, FILE *))buf_char_out, in vprintk() 132 FILE console = FDEV_SETUP_STREAM((int(*)(char, FILE *))char_out, in vprintk()
|
/Zephyr-latest/boards/arduino/nano_33_ble/support/ |
D | startup.cmm | 34 IF OS.FILE("~~/system-settings.cmm") 49 IF OS.FILE("~~/demo/arm/kernel/zephyr/v2-x/zephyr.t32")&&OS.FILE("~~/demo/arm/kernel/zephyr/v2-x/ze… 110 IF ("&userScript"!="")&&FILE.EXIST("&userScript")
|
/Zephyr-latest/lib/libc/arcmwdt/include/ |
D | stdio.h | 20 extern int fileno(FILE *file);
|
/Zephyr-latest/tests/subsys/settings/src/ |
D | CMakeLists.txt | 4 FILE(GLOB mysources *.c )
|
/Zephyr-latest/scripts/checkpatch/ |
D | typedefsfile | 10 FILE
|
/Zephyr-latest/lib/libc/armstdc/src/ |
D | libc-hooks.c | 29 int fputc(int c, FILE *f) in fputc()
|
/Zephyr-latest/tests/kernel/threads/dynamic_thread_stack/ |
D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/Zephyr-latest/scripts/tests/twister_blackbox/test_data/samples/pytest/shell/ |
D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/Zephyr-latest/scripts/tests/twister_blackbox/test_data/tests/always_build_error/dummy/ |
D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|
/Zephyr-latest/scripts/tests/twister_blackbox/test_data/tests/always_fail/dummy/ |
D | CMakeLists.txt | 7 FILE(GLOB app_sources src/*.c)
|