Home | History | Annotate | Download | only in common

Lines Matching refs:DrmSupportInfo

32 #include <drm/DrmSupportInfo.h>
580 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
592 *drmSupportInfoArray = new DrmSupportInfo[arraySize];
595 DrmSupportInfo drmSupportInfo;
599 drmSupportInfo.addFileSuffix(reply.readString8());
604 drmSupportInfo.addMimeType(reply.readString8());
607 drmSupportInfo.setDescription(reply.readString8());
608 (*drmSupportInfoArray)[index] = drmSupportInfo;
1297 DrmSupportInfo* drmSupportInfoArray = NULL;
1303 DrmSupportInfo drmSupportInfo = drmSupportInfoArray[i];
1305 reply->writeInt32(drmSupportInfo.getFileSuffixCount());
1306 DrmSupportInfo::FileSuffixIterator fileSuffixIt
1307 = drmSupportInfo.getFileSuffixIterator();
1312 reply->writeInt32(drmSupportInfo.getMimeTypeCount());
1313 DrmSupportInfo::MimeTypeIterator mimeTypeIt = drmSupportInfo.getMimeTypeIterator();
1317 reply->writeString8(drmSupportInfo.getDescription());