/Zephyr-Core-3.6.0/tests/subsys/logging/log_blocking/src/ |
D | main.c | 32 uint32_t dropped; member 129 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 131 mock_backend.dropped += cnt; in dropped() 138 .dropped = dropped, 155 TC_PRINT("Log backend dropped %u messages\n", mock_backend.dropped); in print_output() 206 zassert_equal(mock_backend.dropped, 0, "dropped %u / %u logs", mock_backend.dropped, in ZTEST()
|
/Zephyr-Core-3.6.0/tests/subsys/logging/log_stress/src/ |
D | main.c | 27 uint32_t dropped; member 72 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 75 mock_backend.dropped += cnt; in dropped() 82 .dropped = IS_ENABLED(CONFIG_LOG_MODE_DEFERRED) ? dropped : NULL, 100 out_cnt += mock_backend.dropped; in validate() 102 zassert_equal(mock_backend.dropped, mock_backend.missing, in validate() 104 mock_backend.dropped, mock_backend.missing); in validate()
|
/Zephyr-Core-3.6.0/subsys/logging/backends/ |
D | log_backend_xtensa_sim.c | 61 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 71 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
D | log_backend_adsp.c | 67 static inline void dropped(const struct log_backend *const backend, in dropped() function 93 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
D | log_backend_efi_console.c | 73 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 84 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
D | log_backend_native_posix.c | 66 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 92 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
D | log_backend_spinel.c | 60 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 108 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
D | log_backend_swo.c | 132 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 143 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
D | log_multidomain_backend.c | 222 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 230 .dropped = { in dropped() 231 .dropped = cnt in dropped() 243 .dropped = dropped,
|
D | log_backend_adsp_mtrace.c | 173 static void dropped(const struct log_backend *const backend, in dropped() function 210 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
D | log_backend_rtt.c | 280 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 307 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
D | log_backend_uart.c | 209 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 224 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
/Zephyr-Core-3.6.0/subsys/shell/ |
D | shell_log_backend.c | 60 uint32_t dropped; in z_shell_log_backend_process() local 64 dropped = atomic_set(&backend->control_block->dropped_cnt, 0); in z_shell_log_backend_process() 65 if (dropped) { in z_shell_log_backend_process() 73 log_output_dropped_process(backend->log_output, dropped); in z_shell_log_backend_process() 115 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 247 dropped(backend, 1); in process() 267 .dropped = dropped,
|
D | Kconfig.template.shell_log_queue_timeout | 9 dropped if queue is still full after requested time (-1 is forever).
|
D | Kconfig.template.shell_log_queue_size | 10 slow shell transport may lead to situations where logs are dropped
|
/Zephyr-Core-3.6.0/samples/net/capture/ |
D | README.rst | 60 RX errors 0 dropped 0 overruns 0 frame 0 62 TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 69 RX errors 0 dropped 0 overruns 0 frame 0 71 TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 78 RX errors 0 dropped 0 overruns 0 frame 0 80 TX errors 8 dropped 8 overruns 0 carrier 8 collisions 0 87 RX errors 0 dropped 0 overruns 0 frame 0 89 TX errors 7 dropped 0 overruns 0 carrier 0 collisions 0 96 RX errors 0 dropped 0 overruns 0 frame 0 98 TX errors 7 dropped 7 overruns 0 carrier 0 collisions 0
|
/Zephyr-Core-3.6.0/subsys/logging/ |
D | log_frontend_dict_uart.c | 43 struct log_frontend_uart_dropped_pkt *dropped; member 72 static atomic_t dropped; /* Counter storing number of dropped messages to be reported. */ variable 82 if (dropped != 0) { in timeout() 138 pkt = generic_pkt.dropped; in add_drop_msg() 147 pkt->data.num_dropped_messages = atomic_set(&dropped, 0); in add_drop_msg() 287 atomic_inc(&dropped); in log_frontend_msg()
|
D | Kconfig.frontends | 28 Determines how often a report about dropped messages is printed. Given
|
/Zephyr-Core-3.6.0/include/zephyr/logging/ |
D | log_backend.h | 67 void (*dropped)(const struct log_backend *const backend, uint32_t cnt); member 196 if (backend->api->dropped != NULL) { in log_backend_dropped() 197 backend->api->dropped(backend, cnt); in log_backend_dropped()
|
D | log_multidomain_helper.h | 117 uint32_t dropped; member 129 struct log_multidomain_dropped dropped; member
|
/Zephyr-Core-3.6.0/doc/kernel/data_structures/ |
D | mpsc_pbuf.rst | 23 * **Overwrite** - oldest entries are dropped until requested amount of memory can 24 be allocated. For each dropped packet user callback is called. 72 If overwrite is enabled, oldest packets are dropped until requested amount of 73 space can be allocated. When packets are dropped ``busy`` flag is checked in the 76 are dropped. When busy packet is being freed, such situation is detected and 106 * Drop notification - callback called whenever a packet is dropped due to
|
/Zephyr-Core-3.6.0/tests/subsys/logging/log_benchmark/src/ |
D | main.c | 59 static void dropped(struct log_backend const *const backend, uint32_t cnt) in dropped() function 69 .dropped = dropped,
|
/Zephyr-Core-3.6.0/tests/subsys/logging/log_api/src/ |
D | mock_backend.c | 202 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped() function 226 .dropped = IS_ENABLED(CONFIG_LOG_MODE_IMMEDIATE) ? NULL : dropped,
|
/Zephyr-Core-3.6.0/drivers/ethernet/ |
D | Kconfig.dwmac | 50 dropped. 66 dropped packets.
|
/Zephyr-Core-3.6.0/tests/lib/mpsc_pbuf/src/ |
D | concurrent.c | 38 atomic_t dropped; member 145 atomic_inc(&data.dropped); in drop() 287 PRINT("\tDropped: %ld\n", data.dropped); in stress_test()
|