Home
last modified time | relevance | path

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

/system/bt/stack/l2cap/
Dl2c_ble.cc1160 if (!fixed_queue_is_empty(p_lcb->le_sec_pending_q)) { in l2cble_sec_comp()
1161 p_buf = (tL2CAP_SEC_DATA*)fixed_queue_dequeue(p_lcb->le_sec_pending_q); in l2cble_sec_comp()
1197 while (!fixed_queue_is_empty(p_lcb->le_sec_pending_q)) { in l2cble_sec_comp()
1198 p_buf = (tL2CAP_SEC_DATA*)fixed_queue_dequeue(p_lcb->le_sec_pending_q); in l2cble_sec_comp()
1252 fixed_queue_enqueue(p_lcb->le_sec_pending_q, p_buf); in l2ble_sec_access_req()
Dl2c_utils.cc93 p_lcb->le_sec_pending_q = fixed_queue_new(SIZE_MAX); in l2cu_allocate_lcb()
221 if (p_lcb->le_sec_pending_q) { in l2cu_release_lcb()
222 while (!fixed_queue_is_empty(p_lcb->le_sec_pending_q)) { in l2cu_release_lcb()
224 (tL2CAP_SEC_DATA*)fixed_queue_try_dequeue(p_lcb->le_sec_pending_q); in l2cu_release_lcb()
230 fixed_queue_free(p_lcb->le_sec_pending_q, NULL); in l2cu_release_lcb()
231 p_lcb->le_sec_pending_q = NULL; in l2cu_release_lcb()
Dl2c_int.h433 fixed_queue_t* le_sec_pending_q; /* LE coc channels waiting for security check member