Lines Matching refs:stack

271 #define sys_port_trace_k_stack_init(stack) sys_trace_k_stack_init(stack, buffer, num_entries)  argument
273 #define sys_port_trace_k_stack_alloc_init_enter(stack) \ argument
274 sys_trace_k_stack_alloc_init_enter(stack, num_entries)
276 #define sys_port_trace_k_stack_alloc_init_exit(stack, ret) \ argument
277 sys_trace_k_stack_alloc_init_exit(stack, num_entries, ret)
279 #define sys_port_trace_k_stack_cleanup_enter(stack) sys_trace_k_stack_cleanup_enter(stack) argument
281 #define sys_port_trace_k_stack_cleanup_exit(stack, ret) sys_trace_k_stack_cleanup_exit(stack, ret) argument
283 #define sys_port_trace_k_stack_push_enter(stack) sys_trace_k_stack_push_enter(stack, data) argument
285 #define sys_port_trace_k_stack_push_exit(stack, ret) sys_trace_k_stack_push_exit(stack, data, ret) argument
287 #define sys_port_trace_k_stack_pop_enter(stack, timeout) argument
289 #define sys_port_trace_k_stack_pop_blocking(stack, timeout) \ argument
290 sys_trace_k_stack_pop_blocking(stack, data, timeout)
292 #define sys_port_trace_k_stack_pop_exit(stack, timeout, ret) \ argument
293 sys_trace_k_stack_pop_exit(stack, data, timeout, ret)
618 void sys_trace_k_stack_init(struct k_stack *stack, stack_data_t *buffer, uint32_t num_entries);
619 void sys_trace_k_stack_alloc_init_enter(struct k_stack *stack, uint32_t num_entries);
620 void sys_trace_k_stack_alloc_init_exit(struct k_stack *stack, uint32_t num_entries, int ret);
621 void sys_trace_k_stack_cleanup_enter(struct k_stack *stack);
622 void sys_trace_k_stack_cleanup_exit(struct k_stack *stack, int ret);
623 void sys_trace_k_stack_push_enter(struct k_stack *stack, stack_data_t data);
624 void sys_trace_k_stack_push_exit(struct k_stack *stack, stack_data_t data, int ret);
625 void sys_trace_k_stack_pop_blocking(struct k_stack *stack, stack_data_t *data, k_timeout_t timeout);
626 void sys_trace_k_stack_pop_exit(struct k_stack *stack, stack_data_t *data, k_timeout_t timeout,