Home | History | Annotate | Download | only in av

Lines Matching refs:p_buf

247     tBTA_AV_RC_MSG  *p_buf;
271 if ((p_buf = (tBTA_AV_RC_MSG *) GKI_getbuf((UINT16) (sizeof(tBTA_AV_RC_MSG) + data_len))) != NULL)
273 p_buf->hdr.event = BTA_AV_AVRC_MSG_EVT;
274 p_buf->handle = handle;
275 p_buf->label = label;
276 p_buf->opcode = opcode;
277 memcpy(&p_buf->msg, p_msg, sizeof(tAVRC_MSG));
280 memcpy((UINT8 *)(p_buf + 1), p_data, data_len);
281 *p_p_data = (UINT8 *)(p_buf + 1);
283 bta_sys_sendmsg(p_buf);
1553 tBTA_AV_API_OPEN *p_buf;
1590 if ((p_buf = (tBTA_AV_API_OPEN *) GKI_getbuf(sizeof(tBTA_AV_API_OPEN))) != NULL)
1592 memcpy(p_buf, &(p_scb->open_api), sizeof(tBTA_AV_API_OPEN));
1593 bta_sys_sendmsg(p_buf);
1953 BT_HDR *p_buf;
1975 while((p_buf = (BT_HDR*)GKI_dequeue (&p_scb->q_info.a2d)) != NULL)
1976 GKI_freebuf(p_buf);