Searched refs:__sl (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/ |
D | mesh_slist.h | 56 #define SYS_SLIST_FOR_EACH_NODE(__sl, __sn) \ argument 57 for (__sn = sys_slist_peek_head(__sl); __sn; \ 80 #define SYS_SLIST_ITERATE_FROM_NODE(__sl, __sn) \ argument 82 : sys_slist_peek_head(__sl); \ 102 #define SYS_SLIST_FOR_EACH_NODE_SAFE(__sl, __sn, __sns) \ argument 103 for (__sn = sys_slist_peek_head(__sl), \ 125 #define SYS_SLIST_PEEK_HEAD_CONTAINER(__sl, __cn, __n) \ argument 126 SYS_SLIST_CONTAINER(sys_slist_peek_head(__sl), __cn, __n) 135 #define SYS_SLIST_PEEK_TAIL_CONTAINER(__sl, __cn, __n) \ argument 136 SYS_SLIST_CONTAINER(sys_slist_peek_tail(__sl), __cn, __n) [all …]
|