Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/
Dgatt_main.c108 gatt_cb.p_tcb_list = list_new(osi_free_func); in gatt_init()
177 for(p_node = list_begin(gatt_cb.p_tcb_list); p_node; p_node = list_next(p_node)) { in gatt_free()
196 list_free(gatt_cb.p_tcb_list); in gatt_free()
1240 for(p_node = list_begin(gatt_cb.p_tcb_list); p_node; p_node = list_next(p_node)) { in gatt_tcb_active_count()
Dgatt_utils.c789 for(p_node = list_get_node(gatt_cb.p_tcb_list, p_tcb); p_node; p_node = list_next(p_node)) { in gatt_find_the_connected_bda()
893 for(p_node = list_begin(gatt_cb.p_tcb_list); p_node; p_node = list_next(p_node)) { in gatt_is_bda_connected()
938 for(p_node = list_begin(gatt_cb.p_tcb_list); p_node; p_node = list_next(p_node)) { in gatt_find_i_tcb_by_addr()
962 for(p_node = list_begin(gatt_cb.p_tcb_list); p_node; p_node = list_next(p_node)) { in gatt_get_tcb_by_idx()
1028 if (p_tcb && list_length(gatt_cb.p_tcb_list) < GATT_MAX_PHY_CHANNEL) { in gatt_tcb_alloc()
1031 list_append(gatt_cb.p_tcb_list, p_tcb); in gatt_tcb_alloc()
1053 if (list_remove(gatt_cb.p_tcb_list, p_tcb)) { in gatt_tcb_free()
1834 for(p_node = list_begin(gatt_cb.p_tcb_list); p_node; p_node = list_next(p_node)) { in gatt_find_tcb_by_cid()
Dgatt_api.c1364 for(p_node = list_begin(gatt_cb.p_tcb_list); p_node; p_node = p_next) { in GATT_Deregister()
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/include/
Dgatt_int.h511 list_t *p_tcb_list; member