Home | History | Annotate | Download | only in av

Lines Matching refs:p_buf

47     BT_HDR  *p_buf;
49 if ((p_buf = (BT_HDR *) GKI_getbuf(sizeof(BT_HDR))) != NULL)
51 p_buf->layer_specific = chnl;
52 p_buf->event = BTA_AV_CI_SRC_DATA_READY_EVT;
53 bta_sys_sendmsg(p_buf);
73 tBTA_AV_CI_SETCONFIG *p_buf;
75 if ((p_buf = (tBTA_AV_CI_SETCONFIG *) GKI_getbuf(sizeof(tBTA_AV_CI_SETCONFIG))) != NULL)
77 p_buf->hdr.layer_specific = hndl;
78 p_buf->hdr.event = (err_code == AVDT_SUCCESS) ?
80 p_buf->err_code = err_code;
81 p_buf->category = category;
82 p_buf->recfg_needed = recfg_needed;
83 p_buf->num_seid = num_seid;
86 p_buf->p_seid = (UINT8 *)(p_buf + 1);
87 memcpy(p_buf->p_seid, p_seid, num_seid);
91 p_buf->p_seid = NULL;
92 p_buf->num_seid = 0;
95 bta_sys_sendmsg(p_buf);