Home
last modified time | relevance | path

Searched refs:le_sec_pending_q (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/
Dl2c_ble.c1589 if (!fixed_queue_is_empty(p_lcb->le_sec_pending_q)) in l2cble_sec_comp()
1591 … p_buf = (tL2CAP_SEC_DATA*) fixed_queue_dequeue(p_lcb->le_sec_pending_q, FIXED_QUEUE_MAX_TIMEOUT); in l2cble_sec_comp()
1634 while (!fixed_queue_is_empty(p_lcb->le_sec_pending_q)) in l2cble_sec_comp()
1636 … p_buf = (tL2CAP_SEC_DATA*) fixed_queue_dequeue(p_lcb->le_sec_pending_q, FIXED_QUEUE_MAX_TIMEOUT); in l2cble_sec_comp()
1692 fixed_queue_enqueue(p_lcb->le_sec_pending_q, p_buf, FIXED_QUEUE_MAX_TIMEOUT); in l2ble_sec_access_req()
Dl2c_utils.c107 p_lcb->le_sec_pending_q = fixed_queue_new(QUEUE_SIZE_MAX); in l2cu_allocate_lcb()
279 if (p_lcb->le_sec_pending_q) in l2cu_release_lcb()
281 while (!fixed_queue_is_empty(p_lcb->le_sec_pending_q)) in l2cu_release_lcb()
283 …tL2CAP_SEC_DATA *p_buf = (tL2CAP_SEC_DATA*) fixed_queue_dequeue(p_lcb->le_sec_pending_q, FIXED_QUE… in l2cu_release_lcb()
289 fixed_queue_free(p_lcb->le_sec_pending_q, NULL); in l2cu_release_lcb()
290 p_lcb->le_sec_pending_q = NULL; in l2cu_release_lcb()
/hal_espressif-latest/components/bt/host/bluedroid/stack/l2cap/include/
Dl2c_int.h433 …fixed_queue_t *le_sec_pending_q; /* LE coc channels waiting for security check completi… member