Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/bt/host/bluedroid/stack/gatt/
Dgatt_utils.c1707 for(p_node = list_begin(gatt_cb.p_clcb_list); p_node; p_node = list_next(p_node)) { in gatt_clcb_find_by_conn_id()
1732 for(p_node = list_begin(gatt_cb.p_clcb_list); p_node; p_node = list_next(p_node)) { in gatt_clcb_find_by_idx()
1759 if (list_length(gatt_cb.p_clcb_list) < GATT_CL_MAX_LCB) { in gatt_clcb_alloc()
1762 list_append(gatt_cb.p_clcb_list, p_clcb); in gatt_clcb_alloc()
1789 list_remove(gatt_cb.p_clcb_list, p_clcb); in gatt_clcb_dealloc()
1858 for(p_node = list_begin(gatt_cb.p_clcb_list); p_node; p_node = list_next(p_node)) { in gatt_num_clcb_by_bd_addr()
2336 for(p_node = list_begin(gatt_cb.p_clcb_list); p_node; p_node = p_node_next) { in gatt_cleanup_upon_disc()
Dgatt_main.c106 gatt_cb.p_clcb_list = list_new(osi_free_func); in gatt_init()
195 list_free(gatt_cb.p_clcb_list); in gatt_free()
Dgatt_api.c1287 for(p_node_clcb = list_begin(gatt_cb.p_clcb_list); p_node_clcb; p_node_clcb = p_node_next) { in GATT_Deregister()
/device/soc/esp/esp32/components/bt/host/bluedroid/stack/gatt/include/
Dgatt_int.h520 list_t *p_clcb_list; /* connection link control block*/ member