Home
last modified time | relevance | path

Searched defs:backend (Results 1 – 25 of 66) sorted by relevance

123

/Zephyr-latest/subsys/modem/backends/
Dmodem_backend_uart_isr.c14 static void modem_backend_uart_isr_flush(struct modem_backend_uart *backend) in modem_backend_uart_isr_flush()
23 static void modem_backend_uart_isr_irq_handler_receive_ready(struct modem_backend_uart *backend) in modem_backend_uart_isr_irq_handler_receive_ready()
65 static void modem_backend_uart_isr_irq_handler_transmit_ready(struct modem_backend_uart *backend) in modem_backend_uart_isr_irq_handler_transmit_ready()
91 struct modem_backend_uart *backend = (struct modem_backend_uart *)user_data; in modem_backend_uart_isr_irq_handler() local
108 struct modem_backend_uart *backend = (struct modem_backend_uart *)data; in modem_backend_uart_isr_open() local
121 static uint32_t get_transmit_buf_length(struct modem_backend_uart *backend) in get_transmit_buf_length()
127 static uint32_t get_receive_buf_length(struct modem_backend_uart *backend) in get_receive_buf_length()
133 static uint32_t get_receive_buf_size(struct modem_backend_uart *backend) in get_receive_buf_size()
139 static uint32_t get_transmit_buf_size(struct modem_backend_uart *backend) in get_transmit_buf_size()
144 static void advertise_transmit_buf_stats(struct modem_backend_uart *backend) in advertise_transmit_buf_stats()
[all …]
Dmodem_backend_uart_async.c23 static bool modem_backend_uart_async_is_uart_stopped(struct modem_backend_uart *backend) in modem_backend_uart_async_is_uart_stopped()
39 static bool modem_backend_uart_async_is_open(struct modem_backend_uart *backend) in modem_backend_uart_async_is_open()
45 static uint32_t get_receive_buf_length(struct modem_backend_uart *backend) in get_receive_buf_length()
53 struct modem_backend_uart *backend = (struct modem_backend_uart *) user_data; in modem_backend_uart_async_event_handler() local
153 struct modem_backend_uart *backend = (struct modem_backend_uart *)data; in modem_backend_uart_async_open() local
179 static uint32_t get_receive_buf_size(struct modem_backend_uart *backend) in get_receive_buf_size()
184 static void advertise_transmit_buf_stats(struct modem_backend_uart *backend, uint32_t length) in advertise_transmit_buf_stats()
189 static void advertise_receive_buf_stats(struct modem_backend_uart *backend) in advertise_receive_buf_stats()
198 static uint32_t get_transmit_buf_size(struct modem_backend_uart *backend) in get_transmit_buf_size()
205 struct modem_backend_uart *backend = (struct modem_backend_uart *)data; in modem_backend_uart_async_transmit() local
[all …]
Dmodem_backend_uart.c16 struct modem_backend_uart *backend = CONTAINER_OF( in modem_backend_uart_receive_ready_handler() local
24 struct modem_backend_uart *backend = in modem_backend_uart_transmit_idle_handler() local
30 struct modem_pipe *modem_backend_uart_init(struct modem_backend_uart *backend, in modem_backend_uart_init()
Dmodem_backend_tty.c25 struct modem_backend_tty *backend = (struct modem_backend_tty *)p1; in modem_backend_tty_routine() local
54 struct modem_backend_tty *backend = (struct modem_backend_tty *)data; in modem_backend_tty_open() local
75 struct modem_backend_tty *backend = (struct modem_backend_tty *)data; in modem_backend_tty_transmit() local
86 struct modem_backend_tty *backend = (struct modem_backend_tty *)data; in modem_backend_tty_receive() local
94 struct modem_backend_tty *backend = (struct modem_backend_tty *)data; in modem_backend_tty_close() local
113 struct modem_pipe *modem_backend_tty_init(struct modem_backend_tty *backend, in modem_backend_tty_init()
/Zephyr-latest/subsys/ipc/ipc_service/
Dipc_service.c19 const struct ipc_service_backend *backend; in ipc_service_open_instance() local
43 const struct ipc_service_backend *backend; in ipc_service_close_instance() local
69 const struct ipc_service_backend *backend; in ipc_service_register_endpoint() local
92 const struct ipc_service_backend *backend; in ipc_service_deregister_endpoint() local
125 const struct ipc_service_backend *backend; in ipc_service_send() local
149 const struct ipc_service_backend *backend; in ipc_service_get_tx_buffer_size() local
178 const struct ipc_service_backend *backend; in ipc_service_get_tx_buffer() local
207 const struct ipc_service_backend *backend; in ipc_service_drop_tx_buffer() local
236 const struct ipc_service_backend *backend; in ipc_service_send_nocopy() local
265 const struct ipc_service_backend *backend; in ipc_service_hold_rx_buffer() local
[all …]
/Zephyr-latest/tests/subsys/logging/log_api/src/
Dmock_backend.c11 void mock_log_backend_reset(const struct log_backend *backend) in mock_log_backend_reset()
23 void mock_log_backend_check_enable(const struct log_backend *backend) in mock_log_backend_check_enable()
30 void mock_log_backend_check_disable(const struct log_backend *backend) in mock_log_backend_check_disable()
37 void mock_log_backend_dummy_record(const struct log_backend *backend, int cnt) in mock_log_backend_dummy_record()
48 void mock_log_backend_drop_record(const struct log_backend *backend, int cnt) in mock_log_backend_drop_record()
55 void mock_log_backend_generic_record(const struct log_backend *backend, in mock_log_backend_generic_record()
96 void mock_log_backend_validate(const struct log_backend *backend, bool panic) in mock_log_backend_validate()
126 static void process(const struct log_backend *const backend, in process()
199 static void mock_init(struct log_backend const *const backend) in mock_init()
204 static void panic(struct log_backend const *const backend) in panic()
[all …]
/Zephyr-latest/include/zephyr/logging/
Dlog_backend.h137 static inline void log_backend_init(const struct log_backend *const backend) in log_backend_init()
156 static inline int log_backend_is_ready(const struct log_backend *const backend) in log_backend_is_ready()
175 static inline void log_backend_msg_process(const struct log_backend *const backend, in log_backend_msg_process()
191 static inline void log_backend_dropped(const struct log_backend *const backend, in log_backend_dropped()
206 static inline void log_backend_panic(const struct log_backend *const backend) in log_backend_panic()
220 static inline void log_backend_id_set(const struct log_backend *const backend, in log_backend_id_set()
235 static inline uint8_t log_backend_id_get(const struct log_backend *const backend) in log_backend_id_get()
250 const struct log_backend *backend; in log_backend_get() local
277 static inline void log_backend_activate(const struct log_backend *const backend, in log_backend_activate()
291 const struct log_backend *const backend) in log_backend_deactivate()
[all …]
/Zephyr-latest/subsys/logging/backends/
Dlog_backend_swo.c77 static void log_backend_swo_process(const struct log_backend *const backend, in log_backend_swo_process()
87 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
93 static void log_backend_swo_init(struct log_backend const *const backend) in log_backend_swo_init()
128 static void log_backend_swo_panic(struct log_backend const *const backend) in log_backend_swo_panic()
132 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
Dlog_backend_efi_console.c41 static void process(const struct log_backend *const backend, in process()
55 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
61 static void log_backend_efi_init(struct log_backend const *const backend) in log_backend_efi_init()
67 static void panic(struct log_backend const *const backend) in panic()
73 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
Dlog_backend_spinel.c32 static void process(const struct log_backend *const backend, in process()
43 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
49 static void log_backend_spinel_init(struct log_backend const *const backend) in log_backend_spinel_init()
54 static void panic(struct log_backend const *const backend) in panic()
60 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
Dlog_backend_xtensa_sim.c40 static void process(const struct log_backend *const backend, in process()
50 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
56 static void panic(struct log_backend const *const backend) in panic()
61 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
Dlog_backend_semihost.c30 static void panic(struct log_backend const *const backend) in panic()
37 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
44 static void process(const struct log_backend *const backend, union log_msg_generic *msg) in process()
55 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
Dlog_backend_adsp.c58 static void panic(struct log_backend const *const backend) in panic()
67 static inline void dropped(const struct log_backend *const backend, in dropped()
73 static void process(const struct log_backend *const backend, in process()
85 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
Dlog_backend_native_posix.c61 static void panic(struct log_backend const *const backend) in panic()
66 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
73 static void process(const struct log_backend *const backend, in process()
83 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
Dlog_backend_ble.c144 static void process(const struct log_backend *const backend, union log_msg_generic *msg) in process()
158 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
165 static void init_ble(struct log_backend const *const backend) in init_ble()
171 static void panic(struct log_backend const *const backend) in panic()
185 static int backend_ready(const struct log_backend *const backend) in backend_ready()
Dlog_multidomain_backend.c14 static void process(const struct log_backend *const backend, in process()
193 static void init(struct log_backend const *const backend) in init()
208 static int is_ready(struct log_backend const *const backend) in is_ready()
215 static void panic(struct log_backend const *const backend) in panic()
222 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
Dlog_backend_adsp_mtrace.c169 static void panic(struct log_backend const *const backend) in panic()
174 static void dropped(const struct log_backend *const backend, in dropped()
180 static void process(const struct log_backend *const backend, in process()
192 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
202 static void init(const struct log_backend *const backend) in init()
Dlog_backend_ws.c141 static void process(const struct log_backend *const backend, in process()
162 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
170 const struct log_backend *backend = log_backend_ws_get(); in log_backend_ws_start() local
199 static void init_ws(struct log_backend const *const backend) in init_ws()
206 static void panic(struct log_backend const *const backend) in panic()
Dlog_backend_rtt.c264 static void log_backend_rtt_init(struct log_backend const *const backend) in log_backend_rtt_init()
274 static void panic(struct log_backend const *const backend) in panic()
280 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
287 static void process(const struct log_backend *const backend, in process()
297 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
/Zephyr-latest/subsys/shell/
Dshell_log_backend.c21 static void fifo_reset(const struct shell_log_backend *backend) in fifo_reset()
26 void z_shell_log_backend_enable(const struct shell_log_backend *backend, in z_shell_log_backend_enable()
50 void z_shell_log_backend_disable(const struct shell_log_backend *backend) in z_shell_log_backend_disable()
56 bool z_shell_log_backend_process(const struct shell_log_backend *backend) in z_shell_log_backend_process()
83 static void panic(const struct log_backend *const backend) in panic()
115 static void dropped(const struct log_backend *const backend, uint32_t cnt) in dropped()
225 static void process(const struct log_backend *const backend, in process()
/Zephyr-latest/tests/subsys/logging/log_switch_format/src/
Dmain.c45 const struct log_backend *backend; in test_log_switch_format_success_case() local
86 const struct log_backend *backend; in test_log_switch_format_set() local
114 const struct log_backend *backend; in test_log_switch_format_set_all_active_backends() local
170 const struct log_backend *backend; in ZTEST() local
190 const struct log_backend *backend; in ZTEST() local
209 const struct log_backend *backend; in ZTEST() local
Dmock_backend.c49 static void process(const struct log_backend *const backend, in process()
99 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
105 static void mock_init(struct log_backend const *const backend) in mock_init()
110 static void panic(struct log_backend const *const backend) in panic()
/Zephyr-latest/tests/subsys/logging/log_syst/src/
Dmock_backend.c45 static void process(const struct log_backend *const backend, in process()
109 static int format_set(const struct log_backend *const backend, uint32_t log_type) in format_set()
115 static void mock_init(struct log_backend const *const backend) in mock_init()
120 static void panic(struct log_backend const *const backend) in panic()
/Zephyr-latest/tests/subsys/modem/modem_pipe/src/
Dmain.c49 struct modem_backend_fake *backend = in modem_backend_fake_opened_handler() local
57 struct modem_backend_fake *backend = data; in modem_backend_fake_open() local
73 struct modem_backend_fake *backend = in modem_backend_fake_transmit_idle_handler() local
81 struct modem_backend_fake *backend = data; in modem_backend_fake_transmit() local
98 struct modem_backend_fake *backend = data; in modem_backend_fake_receive() local
109 struct modem_backend_fake *backend = in modem_backend_fake_closed_handler() local
117 struct modem_backend_fake *backend = data; in modem_backend_fake_close() local
137 static struct modem_pipe *modem_backend_fake_init(struct modem_backend_fake *backend) in modem_backend_fake_init()
150 static void modem_backend_fake_reset(struct modem_backend_fake *backend) in modem_backend_fake_reset()
162 static void modem_backend_fake_set_sync(struct modem_backend_fake *backend, bool sync) in modem_backend_fake_set_sync()
/Zephyr-latest/tests/subsys/logging/log_backend_init/src/
Dmain.c38 static void backend_process(const struct log_backend *const backend, in backend_process()
58 static void panic(const struct log_backend *const backend) in panic()
71 static void backend_init(const struct log_backend *const backend) in backend_init()
80 static int backend_is_ready(const struct log_backend *const backend) in backend_is_ready()

123