Lines Matching refs: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
582 void sys_trace_k_fifo_init_enter(struct k_fifo *fifo);
583 void sys_trace_k_fifo_init_exit(struct k_fifo *fifo);
584 void sys_trace_k_fifo_cancel_wait_enter(struct k_fifo *fifo);
585 void sys_trace_k_fifo_cancel_wait_exit(struct k_fifo *fifo);
586 void sys_trace_k_fifo_put_enter(struct k_fifo *fifo, void *data);
587 void sys_trace_k_fifo_put_exit(struct k_fifo *fifo, void *data);
588 void sys_trace_k_fifo_alloc_put_enter(struct k_fifo *fifo, void *data);
589 void sys_trace_k_fifo_alloc_put_exit(struct k_fifo *fifo, void *data, int ret);
590 void sys_trace_k_fifo_put_list_enter(struct k_fifo *fifo, void *head, void *tail);
591 void sys_trace_k_fifo_put_list_exit(struct k_fifo *fifo, void *head, void *tail);
592 void sys_trace_k_fifo_put_slist_enter(struct k_fifo *fifo, sys_slist_t *list);
593 void sys_trace_k_fifo_put_slist_exit(struct k_fifo *fifo, sys_slist_t *list);
594 void sys_trace_k_fifo_get_enter(struct k_fifo *fifo, k_timeout_t timeout);
595 void sys_trace_k_fifo_get_exit(struct k_fifo *fifo, k_timeout_t timeout, void *ret);
596 void sys_trace_k_fifo_peek_head_enter(struct k_fifo *fifo);
597 void sys_trace_k_fifo_peek_head_exit(struct k_fifo *fifo, void *ret);
598 void sys_trace_k_fifo_peek_tail_enter(struct k_fifo *fifo);
599 void sys_trace_k_fifo_peek_tail_exit(struct k_fifo *fifo, void *ret);