Lines Matching +full:fifo +full:- +full:size

4  * SPDX-License-Identifier: Apache-2.0
206 /* FIFO */
208 #define sys_port_trace_k_fifo_init_enter(fifo) sys_trace_k_fifo_init_enter(fifo) argument
210 #define sys_port_trace_k_fifo_init_exit(fifo) sys_trace_k_fifo_init_exit(fifo) argument
212 #define sys_port_trace_k_fifo_cancel_wait_enter(fifo) sys_trace_k_fifo_cancel_wait_enter(fifo) argument
214 #define sys_port_trace_k_fifo_cancel_wait_exit(fifo) sys_trace_k_fifo_cancel_wait_exit(fifo) argument
216 #define sys_port_trace_k_fifo_put_enter(fifo, data) sys_trace_k_fifo_put_enter(fifo, data) argument
218 #define sys_port_trace_k_fifo_put_exit(fifo, data) sys_trace_k_fifo_put_exit(fifo, data) argument
220 #define sys_port_trace_k_fifo_alloc_put_enter(fifo, data) \ argument
221 sys_trace_k_fifo_alloc_put_enter(fifo, data)
223 #define sys_port_trace_k_fifo_alloc_put_exit(fifo, data, ret) \ argument
224 sys_trace_k_fifo_alloc_put_exit(fifo, data, ret)
226 #define sys_port_trace_k_fifo_put_list_enter(fifo, head, tail) \ argument
227 sys_trace_k_fifo_put_list_enter(fifo, head, tail)
229 #define sys_port_trace_k_fifo_put_list_exit(fifo, head, tail) \ argument
230 sys_trace_k_fifo_put_list_exit(fifo, head, tail)
232 #define sys_port_trace_k_fifo_put_slist_enter(fifo, list) \ argument
233 sys_trace_k_fifo_put_slist_enter(fifo, list)
235 #define sys_port_trace_k_fifo_put_slist_exit(fifo, list) sys_trace_k_fifo_put_slist_exit(fifo, list) argument
237 #define sys_port_trace_k_fifo_get_enter(fifo, timeout) sys_trace_k_fifo_get_enter(fifo, timeout) argument
239 #define sys_port_trace_k_fifo_get_exit(fifo, timeout, ret) \ argument
240 sys_trace_k_fifo_get_exit(fifo, timeout, ret)
242 #define sys_port_trace_k_fifo_peek_head_enter(fifo) sys_trace_k_fifo_peek_head_enter(fifo) argument
244 #define sys_port_trace_k_fifo_peek_head_exit(fifo, ret) sys_trace_k_fifo_peek_head_exit(fifo, ret) argument
246 #define sys_port_trace_k_fifo_peek_tail_enter(fifo) sys_trace_k_fifo_peek_tail_enter(fifo) argument
248 #define sys_port_trace_k_fifo_peek_tail_exit(fifo, ret) sys_trace_k_fifo_peek_tail_exit(fifo, ret) argument
345 #define sys_port_trace_k_pipe_init(pipe) sys_trace_k_pipe_init(pipe, buffer, size)
348 #define sys_port_trace_k_pipe_alloc_init_enter(pipe) sys_trace_k_pipe_alloc_init_enter(pipe, size)
350 sys_trace_k_pipe_alloc_init_exit(pipe, size, ret)
385 sys_trace_k_heap_calloc_enter(h, num, size, timeout)
387 sys_trace_k_heap_calloc_exit(h, num, size, timeout, ret)
394 sys_trace_k_heap_sys_k_aligned_alloc_enter(heap, align, size)
396 sys_trace_k_heap_sys_k_aligned_alloc_exit(heap, align, size, ret)
398 sys_trace_k_heap_sys_k_malloc_enter(heap, size)
400 sys_trace_k_heap_sys_k_malloc_exit(heap, size, ret)
406 sys_trace_k_heap_sys_k_calloc_enter(heap, nmemb, size)
408 sys_trace_k_heap_sys_k_calloc_exit(heap, nmemb, size, ret)
410 sys_trace_k_heap_sys_k_realloc_enter(heap, ptr, size)
412 sys_trace_k_heap_sys_k_realloc_exit(heap, ptr, size, ret)
566 void sys_trace_k_fifo_init_enter(struct k_fifo *fifo);
567 void sys_trace_k_fifo_init_exit(struct k_fifo *fifo);
568 void sys_trace_k_fifo_cancel_wait_enter(struct k_fifo *fifo);
569 void sys_trace_k_fifo_cancel_wait_exit(struct k_fifo *fifo);
570 void sys_trace_k_fifo_put_enter(struct k_fifo *fifo, void *data);
571 void sys_trace_k_fifo_put_exit(struct k_fifo *fifo, void *data);
572 void sys_trace_k_fifo_alloc_put_enter(struct k_fifo *fifo, void *data);
573 void sys_trace_k_fifo_alloc_put_exit(struct k_fifo *fifo, void *data, int ret);
574 void sys_trace_k_fifo_put_list_enter(struct k_fifo *fifo, void *head, void *tail);
575 void sys_trace_k_fifo_put_list_exit(struct k_fifo *fifo, void *head, void *tail);
576 void sys_trace_k_fifo_put_slist_enter(struct k_fifo *fifo, sys_slist_t *list);
577 void sys_trace_k_fifo_put_slist_exit(struct k_fifo *fifo, sys_slist_t *list);
578 void sys_trace_k_fifo_get_enter(struct k_fifo *fifo, k_timeout_t timeout);
579 void sys_trace_k_fifo_get_exit(struct k_fifo *fifo, k_timeout_t timeout, void *ret);
580 void sys_trace_k_fifo_peek_head_enter(struct k_fifo *fifo);
581 void sys_trace_k_fifo_peek_head_exit(struct k_fifo *fifo, void *ret);
582 void sys_trace_k_fifo_peek_tail_enter(struct k_fifo *fifo);
583 void sys_trace_k_fifo_peek_tail_exit(struct k_fifo *fifo, void *ret);
626 void sys_trace_k_pipe_init(struct k_pipe *pipe, unsigned char *buffer, size_t size);
629 void sys_trace_k_pipe_alloc_init_enter(struct k_pipe *pipe, size_t size);
630 void sys_trace_k_pipe_alloc_init_exit(struct k_pipe *pipe, size_t size, int ret);
667 void sys_trace_k_heap_calloc_enter(struct k_heap *h, size_t num, size_t size, k_timeout_t timeout);
668 void sys_trace_k_heap_calloc_exit(struct k_heap *h, size_t num, size_t size, k_timeout_t timeout,
678 void sys_trace_k_heap_sys_k_aligned_alloc_enter(struct k_heap *h, size_t align, size_t size);
679 void sys_trace_k_heap_sys_k_aligned_alloc_exit(struct k_heap *h, size_t align, size_t size,
681 void sys_trace_k_heap_sys_k_malloc_enter(struct k_heap *h, size_t size);
682 void sys_trace_k_heap_sys_k_malloc_exit(struct k_heap *h, size_t size, void *ret);
685 void sys_trace_k_heap_sys_k_calloc_enter(struct k_heap *h, size_t nmemb, size_t size);
686 void sys_trace_k_heap_sys_k_calloc_exit(struct k_heap *h, size_t nmemb, size_t size, void *ret);