Searched refs:fwk_list_pop_head (Results 1 – 6 of 6) sorted by relevance
/SCP-firmware-master/framework/test/ |
A D | test_fwk_list_pop.c | 29 assert(fwk_list_pop_head(&slist) == NULL); in test_slist_pop_head_on_empty() 37 assert(fwk_list_pop_head(&dlist) == NULL); in test_dlist_pop_head_on_empty() 47 assert(fwk_list_pop_head(&slist) == &snodes[0]); in test_slist_pop_head_on_one() 57 assert(fwk_list_pop_head(&dlist) == &dnodes[0]); in test_dlist_pop_head_on_one() 68 assert(fwk_list_pop_head(&slist) == &snodes[0]); in test_slist_pop_head_on_two() 81 assert(fwk_list_pop_head(&dlist) == &dnodes[0]); in test_dlist_pop_head_on_two() 96 assert(fwk_list_pop_head(&slist) == &snodes[0]); in test_slist_pop_head_on_many() 111 assert(fwk_list_pop_head(&dlist) == &dnodes[0]); in test_dlist_pop_head_on_many()
|
A D | test_fwk_core.c | 228 fwk_list_pop_head(&ctx->free_event_queue), in test___fwk_run_main_loop() 247 fwk_list_pop_head(&ctx->free_event_queue), in test___fwk_run_main_loop() 265 fwk_list_pop_head(&ctx->free_event_queue), in test___fwk_run_main_loop() 285 fwk_list_pop_head(&ctx->free_event_queue), in test___fwk_run_main_loop() 305 fwk_list_pop_head(&ctx->free_event_queue), in test___fwk_run_main_loop() 321 fwk_list_pop_head(&ctx->free_event_queue), in test___fwk_run_main_loop() 384 fwk_list_pop_head(&ctx->event_queue), struct fwk_event, slist_node); in test_fwk_put_event() 397 fwk_list_pop_head(&ctx->isr_event_queue), struct fwk_event, slist_node); in test_fwk_put_event() 453 fwk_list_pop_head(&ctx->event_queue), struct fwk_event, slist_node); in test_fwk_put_event_light() 468 fwk_list_pop_head(&ctx->isr_event_queue), struct fwk_event, slist_node); in test_fwk_put_event_light() [all …]
|
/SCP-firmware-master/framework/src/ |
A D | fwk_core.c | 70 fwk_list_pop_head(&ctx.free_event_queue), struct fwk_event, slist_node); in duplicate_event() 182 fwk_list_pop_head(&ctx.event_queue), struct fwk_event, slist_node); in process_next_event() 248 fwk_list_pop_head(&ctx.isr_event_queue), struct fwk_event, slist_node); in process_isr()
|
A D | fwk_notification.c | 207 fwk_list_pop_head(&ctx.free_subscription_dlist), in fwk_notification_subscribe()
|
/SCP-firmware-master/framework/include/ |
A D | fwk_list.h | 129 #define fwk_list_pop_head(list) \ macro
|
/SCP-firmware-master/module/timer/src/ |
A D | mod_timer.c | 557 (struct alarm_sub_element_ctx *)fwk_list_pop_head(&ctx->alarms_active); in timer_isr()
|
Completed in 8 milliseconds