Home
last modified time | relevance | path

Searched refs:list_element (Results 1 – 4 of 4) sorted by relevance

/loramac-node-latest/src/boards/mcu/saml21/hal/utils/src/
Dutils_list.c52 struct list_element *it; in is_list_element()
69 ((struct list_element *)element)->next = list->head; in list_insert_as_head()
70 list->head = (struct list_element *)element; in list_insert_as_head()
78 ((struct list_element *)element)->next = ((struct list_element *)after)->next; in list_insert_after()
79 ((struct list_element *)after)->next = (struct list_element *)element; in list_insert_after()
87 struct list_element *it = list->head; in list_insert_at_end()
92 list->head = (struct list_element *)element; in list_insert_at_end()
93 ((struct list_element *)element)->next = NULL; in list_insert_at_end()
100 it->next = (struct list_element *)element; in list_insert_at_end()
101 ((struct list_element *)element)->next = NULL; in list_insert_at_end()
[all …]
/loramac-node-latest/src/boards/mcu/saml21/hal/utils/include/
Dutils_list.h62 struct list_element { struct
63 struct list_element *next; argument
70 struct list_element *head;
106 return element ? ((struct list_element *)element)->next : NULL; in list_get_next_element()
Dutils_event.h87 struct list_element elem; /*! The pointer to next event */
/loramac-node-latest/src/boards/mcu/saml21/hal/include/
Dhal_timer.h81 struct list_element elem; /*! List element. */