Home
last modified time | relevance | path

Searched refs:cont (Results 1 – 5 of 5) sorted by relevance

/Zephyr-Core-2.7.6/subsys/logging/
Dlog_msg.c94 static void cont_free(struct log_msg_cont *cont) in cont_free() argument
98 while (cont != NULL) { in cont_free()
99 next = cont->next; in cont_free()
100 k_mem_slab_free(&log_msg_pool, (void **)&cont); in cont_free()
101 cont = next; in cont_free()
202 struct log_msg_cont *cont; in cont_arg_get() local
209 cont = msg->payload.ext.next; in cont_arg_get()
214 cont = cont->next; in cont_arg_get()
217 return cont->payload.args[arg_idx]; in cont_arg_get()
255 struct log_msg_cont *cont; in msg_alloc() local
[all …]
/Zephyr-Core-2.7.6/lib/os/
Dmpsc_pbuf.c190 bool cont; in mpsc_pbuf_put_word() local
197 cont = false; in mpsc_pbuf_put_word()
210 cont = dropped_item != NULL; in mpsc_pbuf_put_word()
215 if (cont && valid_drop) { in mpsc_pbuf_put_word()
219 } while (cont); in mpsc_pbuf_put_word()
228 bool cont; in mpsc_pbuf_alloc() local
243 cont = false; in mpsc_pbuf_alloc()
256 cont = true; in mpsc_pbuf_alloc()
265 cont = true; in mpsc_pbuf_alloc()
272 cont = dropped_item != NULL; in mpsc_pbuf_alloc()
[all …]
/Zephyr-Core-2.7.6/subsys/net/lib/lwm2m/
Dlwm2m_rw_json.c148 uint8_t cont, c = 0; in json_next_token() local
152 cont = 1U; in json_next_token()
155 while (in->offset < in->in_cpkt->offset && cont) { in json_next_token()
174 cont = 0U; in json_next_token()
182 cont = 0U; in json_next_token()
199 cont = 0U; in json_next_token()
252 return (cont == 0U); in json_next_token()
/Zephyr-Core-2.7.6/subsys/shell/
Dshell_log_backend.c100 bool cont; in msg_to_fifo() local
107 cont = false; in msg_to_fifo()
121 cont = true; in msg_to_fifo()
130 } while (cont); in msg_to_fifo()
/Zephyr-Core-2.7.6/include/logging/
Dlog_msg.h161 struct log_msg_cont cont; member