Home | History | Annotate | Download | only in sdp

Lines Matching refs:p_uuid_list

71 static UINT8 *sdpu_build_uuid_seq (UINT8 *p_out, UINT16 num_uuids, tSDP_UUID *p_uuid_list)
84 for (xx = 0; xx < num_uuids; xx++, p_uuid_list++)
86 if (p_uuid_list->len == 2)
89 UINT16_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid16);
91 else if (p_uuid_list->len == 4)
94 UINT32_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid32);
99 ARRAY_TO_BE_STREAM (p_out, p_uuid_list->uu.uuid128, p_uuid_list->len);