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

  /external/bluetooth/bluedroid/hci/src/
utils.c 79 void utils_queue_init (BUFFER_Q *p_q)
81 p_q->p_first = p_q->p_last = NULL;
82 p_q->count = 0;
94 void utils_enqueue (BUFFER_Q *p_q, void *p_buf)
102 if (p_q->p_last)
105 (HC_BUFFER_HDR_T *)((uint8_t *)p_q->p_last - BT_HC_BUFFER_HDR_SIZE);
110 p_q->p_first = p_buf;
112 p_q->p_last = p_buf;
113 p_q->count++
    [all...]
  /external/bluetooth/bluedroid/hci/include/
utils.h 88 void utils_queue_init (BUFFER_Q *p_q);
99 void utils_enqueue (BUFFER_Q *p_q, void *p_buf);
110 void *utils_dequeue (BUFFER_Q *p_q);
121 void *utils_dequeue_unlocked (BUFFER_Q *p_q);
144 void *utils_remove_from_queue (BUFFER_Q *p_q, void *p_buf);
155 void *utils_remove_from_queue_unlocked (BUFFER_Q *p_q, void *p_buf);
  /external/bluetooth/bluedroid/gki/common/
gki_buffer.c 343 void GKI_init_q (BUFFER_Q *p_q)
345 p_q->p_first = p_q->p_last = NULL;
346 p_q->count = 0;
737 ** Parameters: p_q - (input) pointer to a queue.
743 void GKI_enqueue (BUFFER_Q *p_q, void *p_buf)
766 if (p_q->p_last)
768 BUFFER_HDR_T *p_last_hdr = (BUFFER_HDR_T *)((UINT8 *)p_q->p_last - BUFFER_HDR_SIZE);
772 p_q->p_first = p_buf;
774 p_q->p_last = p_buf
    [all...]
gki.h 351 #define GKI_IS_QUEUE_EMPTY(p_q) ((p_q)->count == 0)
  /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;
804 ** Parameters: p_q - (input) pointer to a queue.
810 void GKI_enqueue (BUFFER_Q *p_q, void *p_buf)
833 if (p_q->p_first)
835 BUFFER_HDR_T *p_last_hdr = (BUFFER_HDR_T *)((UINT8 *)p_q->p_last - BUFFER_HDR_SIZE);
839 p_q->p_first = p_buf;
841 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;
804 ** Parameters: p_q - (input) pointer to a queue.
810 void GKI_enqueue (BUFFER_Q *p_q, void *p_buf)
833 if (p_q->p_first)
835 BUFFER_HDR_T *p_last_hdr = (BUFFER_HDR_T *)((UINT8 *)p_q->p_last - BUFFER_HDR_SIZE);
839 p_q->p_first = p_buf;
841 p_q->p_last = p_buf
    [all...]
gki.h 369 #define GKI_IS_QUEUE_EMPTY(p_q) ((p_q)->count == 0)
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_utils.c 1125 tL2C_CCB_Q *p_q = NULL; local
1216 tL2C_CCB_Q *p_q = NULL; local
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_media_task.c     [all...]

Completed in 675 milliseconds