Home
last modified time | relevance | path

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

/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/gatt/
Dgatt_auth.c144 if (fixed_queue_is_empty(p_clcb->p_tcb->pending_enc_clcb)) { in gatt_sec_check_complete()
180 (tGATT_PENDING_ENC_CLCB *)fixed_queue_dequeue(p_tcb->pending_enc_clcb, 0); in gatt_enc_cmpl_cback()
196 for (size_t count = fixed_queue_length(p_tcb->pending_enc_clcb); in gatt_enc_cmpl_cback()
198 p_buf = (tGATT_PENDING_ENC_CLCB *)fixed_queue_dequeue(p_tcb->pending_enc_clcb, 0); in gatt_enc_cmpl_cback()
239 size_t count = fixed_queue_length(p_tcb->pending_enc_clcb); in gatt_notify_enc_cmpl()
242 (tGATT_PENDING_ENC_CLCB *)fixed_queue_dequeue(p_tcb->pending_enc_clcb, 0); in gatt_notify_enc_cmpl()
Dgatt_main.c179 fixed_queue_free(p_tcb->pending_enc_clcb, NULL); in gatt_free()
180 p_tcb->pending_enc_clcb = NULL; in gatt_free()
414 if(p_tcb->pending_enc_clcb != NULL) { in gatt_act_connect()
415 fixed_queue_free(p_tcb->pending_enc_clcb, NULL); in gatt_act_connect()
Dgatt_utils.c119 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_dequeue(p_tcb->pending_enc_clcb, 0)); in gatt_free_pending_enc_queue()
127 fixed_queue_free(p_tcb->pending_enc_clcb, NULL); in gatt_free_pending_enc_queue()
128 p_tcb->pending_enc_clcb = NULL; in gatt_free_pending_enc_queue()
1086 p_tcb->pending_enc_clcb = fixed_queue_new(QUEUE_SIZE_MAX); in gatt_allocate_tcb_by_bdaddr()
2865 fixed_queue_enqueue(p_tcb->pending_enc_clcb, p_buf, FIXED_QUEUE_MAX_TIMEOUT); in gatt_add_pending_enc_channel_clcb()
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/gatt/include/
Dgatt_int.h376 fixed_queue_t *pending_enc_clcb; /* pending encryption channel q */ member