Searched refs:node (Results 1 – 4 of 4) sorted by relevance
/hal_stm32-latest/lib/stm32wba/BLE_TransparentMode/System/Modules/ |
D | stm_list.c | 55 void LST_insert_head (tListNode * listHead, tListNode * node) in LST_insert_head() argument 62 node->next = listHead->next; in LST_insert_head() 63 node->prev = listHead; in LST_insert_head() 64 listHead->next = node; in LST_insert_head() 65 (node->next)->prev = node; in LST_insert_head() 70 void LST_insert_tail (tListNode * listHead, tListNode * node) in LST_insert_tail() argument 77 node->next = listHead; in LST_insert_tail() 78 node->prev = listHead->prev; in LST_insert_tail() 79 listHead->prev = node; in LST_insert_tail() 80 (node->prev)->next = node; in LST_insert_tail() [all …]
|
D | stm_list.h | 36 void LST_insert_head (tListNode * listHead, tListNode * node); 38 void LST_insert_tail (tListNode * listHead, tListNode * node); 40 void LST_remove_node (tListNode * node); 42 void LST_remove_head (tListNode * listHead, tListNode ** node ); 44 void LST_remove_tail (tListNode * listHead, tListNode ** node ); 46 void LST_insert_node_after (tListNode * node, tListNode * ref_node); 48 void LST_insert_node_before (tListNode * node, tListNode * ref_node); 52 void LST_get_next_node (tListNode * ref_node, tListNode ** node); 54 void LST_get_prev_node (tListNode * ref_node, tListNode ** node);
|
/hal_stm32-latest/lib/stm32wb/hci/ |
D | stm_list.c | 56 void LST_insert_head (tListNode * listHead, tListNode * node) in LST_insert_head() argument 63 node->next = listHead->next; in LST_insert_head() 64 node->prev = listHead; in LST_insert_head() 65 listHead->next = node; in LST_insert_head() 66 (node->next)->prev = node; in LST_insert_head() 72 void LST_insert_tail (tListNode * listHead, tListNode * node) in LST_insert_tail() argument 79 node->next = listHead; in LST_insert_tail() 80 node->prev = listHead->prev; in LST_insert_tail() 81 listHead->prev = node; in LST_insert_tail() 82 (node->prev)->next = node; in LST_insert_tail() [all …]
|
D | stm_list.h | 35 void LST_insert_head (tListNode * listHead, tListNode * node); 37 void LST_insert_tail (tListNode * listHead, tListNode * node); 39 void LST_remove_node (tListNode * node); 41 void LST_remove_head (tListNode * listHead, tListNode ** node ); 43 void LST_remove_tail (tListNode * listHead, tListNode ** node ); 45 void LST_insert_node_after (tListNode * node, tListNode * ref_node); 47 void LST_insert_node_before (tListNode * node, tListNode * ref_node); 51 void LST_get_next_node (tListNode * ref_node, tListNode ** node); 53 void LST_get_prev_node (tListNode * ref_node, tListNode ** node);
|