Home
last modified time | relevance | path

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

/system/bt/stack/gatt/
Dgatt_auth.c134 fixed_queue_is_empty(p_clcb->p_tcb->pending_enc_clcb)) { in gatt_sec_check_complete()
174 (tGATT_PENDING_ENC_CLCB *)fixed_queue_try_dequeue(p_tcb->pending_enc_clcb); in gatt_enc_cmpl_cback()
196 for (size_t count = fixed_queue_length(p_tcb->pending_enc_clcb); in gatt_enc_cmpl_cback()
199 p_buf = (tGATT_PENDING_ENC_CLCB *)fixed_queue_try_dequeue(p_tcb->pending_enc_clcb); in gatt_enc_cmpl_cback()
249 size_t count = fixed_queue_length(p_tcb->pending_enc_clcb); in gatt_notify_enc_cmpl()
253 (tGATT_PENDING_ENC_CLCB *)fixed_queue_try_dequeue(p_tcb->pending_enc_clcb); in gatt_notify_enc_cmpl()
Dgatt_utils.c120 if (p_tcb->pending_enc_clcb == NULL) in gatt_free_pending_enc_queue()
124 while (!fixed_queue_is_empty(p_tcb->pending_enc_clcb)) in gatt_free_pending_enc_queue()
125 osi_free(fixed_queue_try_dequeue(p_tcb->pending_enc_clcb)); in gatt_free_pending_enc_queue()
126 fixed_queue_free(p_tcb->pending_enc_clcb, NULL); in gatt_free_pending_enc_queue()
127 p_tcb->pending_enc_clcb = NULL; in gatt_free_pending_enc_queue()
971 p_tcb->pending_enc_clcb = fixed_queue_new(SIZE_MAX); in gatt_allocate_tcb_by_bdaddr()
2803 fixed_queue_enqueue(p_tcb->pending_enc_clcb, p_buf); in gatt_add_pending_enc_channel_clcb()
Dgatt_main.c164 fixed_queue_free(gatt_cb.tcb[i].pending_enc_clcb, NULL); in gatt_free()
165 gatt_cb.tcb[i].pending_enc_clcb = NULL; in gatt_free()
404 fixed_queue_free(p_tcb->pending_enc_clcb, NULL); in gatt_act_connect()
Dgatt_int.h351 fixed_queue_t *pending_enc_clcb; /* pending encryption channel q */ member