Home | History | Annotate | Download | only in avrc

Lines Matching refs:p_start

880   uint8_t* p_start = ((uint8_t*)(p_pkt + 1) + p_pkt->offset);
881 *p_start = AVRC_RSP_ACCEPT & AVRC_CTYPE_MASK;
882 p_start += AVRC_VENDOR_HDR_SIZE;
883 UINT8_TO_BE_STREAM(p_start, 0);
884 UINT8_TO_BE_STREAM(p_start, AVRC_PKT_SINGLE);
885 UINT16_TO_BE_STREAM(p_start, 0);
890 uint8_t* p_start = ((uint8_t*)(p_pkt + 1) + p_pkt->offset);
891 *p_start = AVRC_RSP_REJ & AVRC_CTYPE_MASK;
892 p_start += AVRC_VENDOR_HDR_SIZE;
893 UINT8_TO_BE_STREAM(p_start, 0);
894 UINT8_TO_BE_STREAM(p_start, AVRC_PKT_SINGLE);
895 UINT16_TO_BE_STREAM(p_start, 1);
896 UINT8_TO_BE_STREAM(p_start, AVRC_STS_BAD_PARAM);
1138 uint8_t* p_start = NULL;
1160 p_start = ((uint8_t*)(p_pkt + 1) + p_pkt->offset);
1173 if ((*p_start == AVRC_PDU_REQUEST_CONTINUATION_RSP) ||
1174 (*p_start == AVRC_PDU_ABORT_CONTINUATION_RSP)) {
1180 p_start = ((uint8_t*)(p_pkt + 1) + p_pkt->offset);
1223 if (p_start != NULL) {
1226 p_fcb->frag_pdu = *p_start;
1234 p_start -= AVRC_VENDOR_HDR_SIZE;
1235 memcpy(p_data, p_start, AVRC_MAX_CTRL_DATA_LEN);