Home
last modified time | relevance | path

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

/system/bt/stack/gatt/
Dgatt_utils.cc94 if (p_tcb->pending_ind_q == NULL) return; in gatt_free_pending_ind()
97 while (!fixed_queue_is_empty(p_tcb->pending_ind_q)) in gatt_free_pending_ind()
98 osi_free(fixed_queue_try_dequeue(p_tcb->pending_ind_q)); in gatt_free_pending_ind()
99 fixed_queue_free(p_tcb->pending_ind_q, NULL); in gatt_free_pending_ind()
100 p_tcb->pending_ind_q = NULL; in gatt_free_pending_ind()
198 fixed_queue_enqueue(p_tcb->pending_ind_q, p_buf); in gatt_add_pending_ind()
320 fixed_queue_is_empty(p_tcb->pending_ind_q)); in gatt_is_srv_chg_ind_pending()
324 } else if (!fixed_queue_is_empty(p_tcb->pending_ind_q)) { in gatt_is_srv_chg_ind_pending()
325 list_t* list = fixed_queue_get_list(p_tcb->pending_ind_q); in gatt_is_srv_chg_ind_pending()
499 p_tcb->pending_ind_q = fixed_queue_new(SIZE_MAX); in gatt_allocate_tcb_by_bdaddr()
Dgatt_main.cc164 fixed_queue_free(gatt_cb.tcb[i].pending_ind_q, NULL); in gatt_free()
165 gatt_cb.tcb[i].pending_ind_q = NULL; in gatt_free()
379 fixed_queue_free(p_tcb->pending_ind_q, NULL); in gatt_act_connect()
Dgatt_sr.cc1124 (tGATT_VALUE*)fixed_queue_try_peek_first(p_tcb->pending_ind_q); in gatts_chk_pending_ind()
1128 osi_free(fixed_queue_try_remove_from_queue(p_tcb->pending_ind_q, p_buf)); in gatts_chk_pending_ind()
Dgatt_int.h282 fixed_queue_t* pending_ind_q; member