Home
last modified time | relevance | path

Searched refs:DrmSupportInfo (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/av/drm/common/
DDrmSupportInfo.cpp22 DrmSupportInfo::DrmSupportInfo() { in DrmSupportInfo() function in DrmSupportInfo
26 DrmSupportInfo::DrmSupportInfo(const DrmSupportInfo& drmSupportInfo): in DrmSupportInfo() function in DrmSupportInfo
33 bool DrmSupportInfo::operator<(const DrmSupportInfo& drmSupportInfo) const { in operator <()
39 bool DrmSupportInfo::operator==(const DrmSupportInfo& drmSupportInfo) const { in operator ==()
45 bool DrmSupportInfo::isSupportedMimeType(const String8& mimeType) const { in isSupportedMimeType()
60 bool DrmSupportInfo::isSupportedFileSuffix(const String8& fileType) const { in isSupportedFileSuffix()
71 DrmSupportInfo& DrmSupportInfo::operator=(const DrmSupportInfo& drmSupportInfo) { in operator =()
78 int DrmSupportInfo::getMimeTypeCount(void) const { in getMimeTypeCount()
82 int DrmSupportInfo::getFileSuffixCount(void) const { in getFileSuffixCount()
86 status_t DrmSupportInfo::addMimeType(const String8& mimeType) { in addMimeType()
[all …]
DAndroid.mk28 DrmSupportInfo.cpp \
DIDrmManagerService.cpp571 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo()
583 *drmSupportInfoArray = new DrmSupportInfo[arraySize]; in getAllSupportInfo()
586 DrmSupportInfo drmSupportInfo; in getAllSupportInfo()
1293 DrmSupportInfo* drmSupportInfoArray = NULL; in onTransact()
1299 DrmSupportInfo drmSupportInfo = drmSupportInfoArray[i]; in onTransact()
1302 DrmSupportInfo::FileSuffixIterator fileSuffixIt in onTransact()
1309 DrmSupportInfo::MimeTypeIterator mimeTypeIt = drmSupportInfo.getMimeTypeIterator(); in onTransact()
DDrmEngineBase.cpp118 DrmSupportInfo* DrmEngineBase::getSupportInfo(int uniqueId) { in getSupportInfo()
/frameworks/av/include/drm/
DDrmSupportInfo.h32 class DrmSupportInfo {
38 friend class DrmSupportInfo; variable
40 MimeTypeIterator(DrmSupportInfo* drmSupportInfo) in MimeTypeIterator()
52 DrmSupportInfo* mDrmSupportInfo;
60 friend class DrmSupportInfo; variable
63 FileSuffixIterator(DrmSupportInfo* drmSupportInfo) in FileSuffixIterator()
75 DrmSupportInfo* mDrmSupportInfo;
83 DrmSupportInfo();
88 DrmSupportInfo(const DrmSupportInfo& drmSupportInfo);
93 virtual ~DrmSupportInfo() {} in ~DrmSupportInfo()
[all …]
DDrmManagerClient.h32 class DrmSupportInfo; variable
380 status_t getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray);
/frameworks/base/drm/java/android/drm/
DDrmSupportInfo.java30 public class DrmSupportInfo { class
145 if (object instanceof DrmSupportInfo) { in equals()
146 DrmSupportInfo info = (DrmSupportInfo) object; in equals()
DDrmManagerClient.java354 DrmSupportInfo[] supportInfos = _getAllSupportInfo(mUniqueId); in getAvailableDrmEngines()
908 private native DrmSupportInfo[] _getAllSupportInfo(int uniqueId); in _getAllSupportInfo()
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
DFwdLockEngine.h318 DrmSupportInfo* onGetSupportInfo(int uniqueId);
508 static void AddSupportedMimeTypes(DrmSupportInfo *info);
509 static void AddSupportedFileSuffixes(DrmSupportInfo *info);
/frameworks/av/drm/libdrmframework/include/
DDrmManager.h40 class DrmSupportInfo; variable
110 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
159 KeyedVector< DrmSupportInfo, String8 > mSupportInfoToPlugInIdMap;
DIDrmManagerService.h34 class DrmSupportInfo; variable
139 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) = 0;
226 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DNoOpDrmManagerClientImpl.h54 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DDrmManagerService.h116 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DDrmManagerClientImpl.h295 …virtual status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray…
/frameworks/av/drm/drmserver/
DDrmManager.cpp106 DrmSupportInfo* info = mPlugInManager.getPlugIn(plugInPath).getSupportInfo(0); in loadPlugIns()
373 int /* uniqueId */, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo()
380 Vector<DrmSupportInfo> drmSupportInfoList; in getAllSupportInfo()
384 DrmSupportInfo* drmSupportInfo in getAllSupportInfo()
394 *drmSupportInfoArray = new DrmSupportInfo[validPlugins]; in getAllSupportInfo()
569 const DrmSupportInfo& drmSupportInfo = mSupportInfoToPlugInIdMap.keyAt(index); in getSupportedPlugInId()
585 const DrmSupportInfo& drmSupportInfo = mSupportInfoToPlugInIdMap.keyAt(index); in getSupportedPlugInIdFromPath()
DDrmManagerService.cpp260 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo()
/frameworks/av/drm/libdrmframework/plugins/common/include/
DIDrmEngine.h31 class DrmSupportInfo; variable
314 virtual DrmSupportInfo* getSupportInfo(int uniqueId) = 0;
DDrmEngineBase.h80 DrmSupportInfo* getSupportInfo(int uniqueId);
370 virtual DrmSupportInfo* onGetSupportInfo(int uniqueId) = 0;
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
DFwdLockEngine.cpp178 void FwdLockEngine::AddSupportedMimeTypes(DrmSupportInfo *info) { in AddSupportedMimeTypes()
184 void FwdLockEngine::AddSupportedFileSuffixes(DrmSupportInfo *info) { in AddSupportedFileSuffixes()
212 DrmSupportInfo* FwdLockEngine::onGetSupportInfo(int /* uniqueId */) { in onGetSupportInfo()
213 DrmSupportInfo* pSupportInfo = new DrmSupportInfo(); in onGetSupportInfo()
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
DDrmPassthruPlugIn.cpp126 DrmSupportInfo* DrmPassthruPlugIn::onGetSupportInfo(int uniqueId) { in onGetSupportInfo()
128 DrmSupportInfo* drmSupportInfo = new DrmSupportInfo(); in onGetSupportInfo()
/frameworks/av/drm/libdrmframework/
DNoOpDrmManagerClientImpl.cpp155 DrmSupportInfo** /* drmSupportInfoArray */) { in getAllSupportInfo() argument
DDrmManagerClient.cpp115 status_t DrmManagerClient::getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo()
DDrmManagerClientImpl.cpp250 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo()
/frameworks/av/drm/libdrmframework/plugins/passthru/include/
DDrmPassthruPlugIn.h74 DrmSupportInfo* onGetSupportInfo(int uniqueId);
/frameworks/base/drm/jni/
Dandroid_drm_DrmManagerClient.cpp339 DrmSupportInfo* drmSupportInfoArray = NULL; in android_drm_DrmManagerClient_getAllSupportInfo()
349 DrmSupportInfo info = drmSupportInfoArray[i]; in android_drm_DrmManagerClient_getAllSupportInfo()
362 DrmSupportInfo::MimeTypeIterator iterator = info.getMimeTypeIterator(); in android_drm_DrmManagerClient_getAllSupportInfo()
368 DrmSupportInfo::FileSuffixIterator it = info.getFileSuffixIterator(); in android_drm_DrmManagerClient_getAllSupportInfo()

12