Lines Matching refs:drmSupportInfo
32 #include <drm/DrmSupportInfo.h>
571 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
583 *drmSupportInfoArray = new DrmSupportInfo[arraySize];
586 DrmSupportInfo drmSupportInfo;
590 drmSupportInfo.addFileSuffix(reply.readString8());
595 drmSupportInfo.addMimeType(reply.readString8());
598 drmSupportInfo.setDescription(reply.readString8());
599 (*drmSupportInfoArray)[index] = drmSupportInfo;
1293 DrmSupportInfo* drmSupportInfoArray = NULL;
1299 DrmSupportInfo drmSupportInfo = drmSupportInfoArray[i];
1301 reply->writeInt32(drmSupportInfo.getFileSuffixCount());
1302 DrmSupportInfo::FileSuffixIterator fileSuffixIt
1303 = drmSupportInfo.getFileSuffixIterator();
1308 reply->writeInt32(drmSupportInfo.getMimeTypeCount());
1309 DrmSupportInfo::MimeTypeIterator mimeTypeIt = drmSupportInfo.getMimeTypeIterator();
1313 reply->writeString8(drmSupportInfo.getDescription());