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.c97 if (p_tcb->pending_ind_q == NULL) in gatt_free_pending_ind()
101 while (!fixed_queue_is_empty(p_tcb->pending_ind_q)) in gatt_free_pending_ind()
102 osi_free(fixed_queue_try_dequeue(p_tcb->pending_ind_q)); in gatt_free_pending_ind()
103 fixed_queue_free(p_tcb->pending_ind_q, NULL); in gatt_free_pending_ind()
104 p_tcb->pending_ind_q = NULL; in gatt_free_pending_ind()
242 fixed_queue_enqueue(p_tcb->pending_ind_q, p_buf); in gatt_add_pending_ind()
769 fixed_queue_is_empty(p_tcb->pending_ind_q)); in gatt_is_srv_chg_ind_pending()
775 else if (! fixed_queue_is_empty(p_tcb->pending_ind_q)) in gatt_is_srv_chg_ind_pending()
777 list_t *list = fixed_queue_get_list(p_tcb->pending_ind_q); in gatt_is_srv_chg_ind_pending()
972 p_tcb->pending_ind_q = fixed_queue_new(SIZE_MAX); in gatt_allocate_tcb_by_bdaddr()
Dgatt_main.c167 fixed_queue_free(gatt_cb.tcb[i].pending_ind_q, NULL); in gatt_free()
168 gatt_cb.tcb[i].pending_ind_q = NULL; in gatt_free()
385 fixed_queue_free(p_tcb->pending_ind_q, NULL); in gatt_act_connect()
Dgatt_sr.c1310 tGATT_VALUE *p_buf = (tGATT_VALUE *)fixed_queue_try_peek_first(p_tcb->pending_ind_q); in gatts_chk_pending_ind()
1317 osi_free(fixed_queue_try_remove_from_queue(p_tcb->pending_ind_q, in gatts_chk_pending_ind()
Dgatt_int.h369 fixed_queue_t *pending_ind_q; member