Searched refs:tListNode (Results 1 – 4 of 4) sorted by relevance
/hal_stm32-3.5.0/lib/stm32wb/hci/ |
D | stm_list.h | 29 } tListNode; typedef 31 void LST_init_head (tListNode * listHead); 33 uint8_t LST_is_empty (tListNode * listHead); 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); [all …]
|
D | stm_list.c | 30 void LST_init_head (tListNode * listHead) in LST_init_head() 36 uint8_t LST_is_empty (tListNode * listHead) in LST_is_empty() 56 void LST_insert_head (tListNode * listHead, tListNode * node) in LST_insert_head() 72 void LST_insert_tail (tListNode * listHead, tListNode * node) in LST_insert_tail() 88 void LST_remove_node (tListNode * node) in LST_remove_node() 102 void LST_remove_head (tListNode * listHead, tListNode ** node ) in LST_remove_head() 116 void LST_remove_tail (tListNode * listHead, tListNode ** node ) in LST_remove_tail() 130 void LST_insert_node_after (tListNode * node, tListNode * ref_node) in LST_insert_node_after() 146 void LST_insert_node_before (tListNode * node, tListNode * ref_node) in LST_insert_node_before() 162 int LST_get_size (tListNode * listHead) in LST_get_size() [all …]
|
D | tl_mbox.c | 58 PLACE_IN_SECTION("MB_MEM1") ALIGN(4) static tListNode FreeBufQueue; 59 PLACE_IN_SECTION("MB_MEM1") ALIGN(4) static tListNode TracesEvtQueue; 61 PLACE_IN_SECTION("MB_MEM1") ALIGN(4) static tListNode EvtQueue; 62 PLACE_IN_SECTION("MB_MEM1") ALIGN(4) static tListNode SystemEvtQueue; 65 static tListNode LocalFreeBufQueue; 153 LST_remove_head (&EvtQueue, (tListNode **)&phcievt); in HW_IPCC_BLE_RxEvtNot() 240 LST_remove_head (&SystemEvtQueue, (tListNode **)&p_evt); in HW_IPCC_SYS_EvtNot() 613 LST_insert_tail(&LocalFreeBufQueue, (tListNode *)phcievt); in TL_MM_EvtDone() 624 tListNode *p_node; in SendFreeBuf() 628 LST_remove_head( &LocalFreeBufQueue, (tListNode **)&p_node ); in SendFreeBuf() [all …]
|
D | shci_tl.c | 45 static tListNode SHciAsynchEventQueue; 53 PLACE_IN_SECTION("SYSTEM_DRIVER_CONTEXT") static tListNode SHciAsynchEventQueue; 107 LST_remove_head ( &SHciAsynchEventQueue, (tListNode **)&phcievtbuffer ); in shci_user_evt_proc() 130 LST_insert_head ( &SHciAsynchEventQueue, (tListNode *)phcievtbuffer ); in shci_user_evt_proc() 238 LST_insert_tail(&SHciAsynchEventQueue, (tListNode *)shcievt); in TlUserEvtReceived()
|