HomeSort by relevance Sort by last modified time
    Searched refs:p_q (Results 1 - 8 of 8) sorted by null

  /system/bt/stack/btm/
btm_ble_privacy.c 67 tBTM_BLE_RESOLVE_Q *p_q = &btm_cb.ble_ctr_cb.resolving_list_pend_q; local
69 memcpy(p_q->resolve_q_random_pseudo[p_q->q_next], pseudo_bda, BD_ADDR_LEN);
70 p_q->resolve_q_action[p_q->q_next] = op_code;
71 p_q->q_next ++;
72 p_q->q_next %= controller_get_interface()->get_ble_resolving_list_max_size();
89 tBTM_BLE_RESOLVE_Q *p_q = &btm_cb.ble_ctr_cb.resolving_list_pend_q; local
91 for (UINT8 i = p_q->q_pending; i != p_q->q_next;
116 tBTM_BLE_RESOLVE_Q *p_q = &btm_cb.ble_ctr_cb.resolving_list_pend_q; local
989 tBTM_BLE_RESOLVE_Q *p_q = &btm_cb.ble_ctr_cb.resolving_list_pend_q; local
1023 tBTM_BLE_RESOLVE_Q *p_q = &btm_cb.ble_ctr_cb.resolving_list_pend_q; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/gki/common/
gki_buffer.c 331 void GKI_init_q (BUFFER_Q *p_q)
333 p_q->p_first = p_q->p_last = NULL;
334 p_q->count = 0;
806 ** Parameters: p_q - (input) pointer to a queue.
812 void GKI_enqueue (BUFFER_Q *p_q, void *p_buf)
835 if (p_q->p_first)
837 BUFFER_HDR_T *p_last_hdr = (BUFFER_HDR_T *)((UINT8 *)p_q->p_last - BUFFER_HDR_SIZE);
841 p_q->p_first = p_buf;
843 p_q->p_last = p_buf
    [all...]
gki.h 366 #define GKI_IS_QUEUE_EMPTY(p_q) ((p_q)->count == 0)
  /external/libnfc-nci/src/gki/common/
gki_buffer.c 331 void GKI_init_q (BUFFER_Q *p_q)
333 p_q->p_first = p_q->p_last = NULL;
334 p_q->count = 0;
806 ** Parameters: p_q - (input) pointer to a queue.
812 void GKI_enqueue (BUFFER_Q *p_q, void *p_buf)
835 if (p_q->p_first)
837 BUFFER_HDR_T *p_last_hdr = (BUFFER_HDR_T *)((UINT8 *)p_q->p_last - BUFFER_HDR_SIZE);
841 p_q->p_first = p_buf;
843 p_q->p_last = p_buf
    [all...]
gki.h 369 #define GKI_IS_QUEUE_EMPTY(p_q) ((p_q)->count == 0)
  /system/bt/stack/gap/
gap_ble.c 153 tGAP_BLE_REQ *p_q; local
155 while ((p_q = (tGAP_BLE_REQ *)fixed_queue_try_dequeue(p_clcb->pending_req_q)) != NULL)
158 if (p_q->p_cback != NULL)
159 (*p_q->p_cback)(FALSE, p_clcb->bda, 0, NULL);
161 osi_free(p_q);
179 tGAP_BLE_REQ *p_q = (tGAP_BLE_REQ *)osi_malloc(sizeof(tGAP_BLE_REQ)); local
181 p_q->p_cback = p_cback;
182 p_q->uuid = uuid;
183 fixed_queue_enqueue(p_clcb->pending_req_q, p_q);
199 tGAP_BLE_REQ *p_q = (tGAP_BLE_REQ *)fixed_queue_try_dequeue(p_clcb->pending_req_q); local
    [all...]
  /system/bt/stack/l2cap/
l2c_utils.c 1260 tL2C_CCB_Q *p_q = NULL; local
1351 tL2C_CCB_Q *p_q = NULL; local
    [all...]
  /system/bt/btif/src/
btif_media_task.c 367 static void btif_media_flush_q(fixed_queue_t *p_q);
    [all...]

Completed in 125 milliseconds