Searched refs:fwk_list_next (Results 1 – 5 of 5) sorted by relevance
/SCP-firmware-master/framework/test/ |
A D | test_fwk_list_next.c | 32 assert(fwk_list_next(&slist, &snodes[0]) == &snodes[1]); in test_slist_next() 33 assert(fwk_list_next(&slist, &snodes[1]) == NULL); in test_slist_next() 41 assert(fwk_list_next(&dlist, &dnodes[0]) == &dnodes[1]); in test_dlist_next() 42 assert(fwk_list_next(&dlist, &dnodes[1]) == NULL); in test_dlist_next()
|
/SCP-firmware-master/framework/include/ |
A D | fwk_list.h | 145 #define fwk_list_next(list, node) \ macro 219 node = fwk_list_next(list, node), \
|
/SCP-firmware-master/framework/src/ |
A D | fwk_notification.c | 95 node = fwk_list_next(subscription_dlist, node)) { in search_subscription() 131 node = fwk_list_next(subscription_dlist, node)) { in send_notifications()
|
A D | fwk_delayed_resp.c | 70 fwk_list_next(delayed_response_list, delayed_response_node); in __fwk_search_delayed_response()
|
/SCP-firmware-master/module/timer/src/ |
A D | mod_timer.c | 193 alarm_node = fwk_list_next(&ctx->alarms_active, alarm_node); in _insert_alarm_ctx_into_active_queue()
|
Completed in 5 milliseconds