/frameworks/av/drm/common/ |
D | DrmSupportInfo.cpp | 22 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 …]
|
D | Android.mk | 28 DrmSupportInfo.cpp \
|
D | IDrmManagerService.cpp | 571 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()
|
D | DrmEngineBase.cpp | 118 DrmSupportInfo* DrmEngineBase::getSupportInfo(int uniqueId) { in getSupportInfo()
|
/frameworks/av/include/drm/ |
D | DrmSupportInfo.h | 32 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 …]
|
D | DrmManagerClient.h | 32 class DrmSupportInfo; variable 380 status_t getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray);
|
/frameworks/base/drm/java/android/drm/ |
D | DrmSupportInfo.java | 30 public class DrmSupportInfo { class 145 if (object instanceof DrmSupportInfo) { in equals() 146 DrmSupportInfo info = (DrmSupportInfo) object; in equals()
|
D | DrmManagerClient.java | 354 DrmSupportInfo[] supportInfos = _getAllSupportInfo(mUniqueId); in getAvailableDrmEngines() 908 private native DrmSupportInfo[] _getAllSupportInfo(int uniqueId); in _getAllSupportInfo()
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/ |
D | FwdLockEngine.h | 318 DrmSupportInfo* onGetSupportInfo(int uniqueId); 508 static void AddSupportedMimeTypes(DrmSupportInfo *info); 509 static void AddSupportedFileSuffixes(DrmSupportInfo *info);
|
/frameworks/av/drm/libdrmframework/include/ |
D | DrmManager.h | 40 class DrmSupportInfo; variable 110 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray); 159 KeyedVector< DrmSupportInfo, String8 > mSupportInfoToPlugInIdMap;
|
D | IDrmManagerService.h | 34 class DrmSupportInfo; variable 139 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) = 0; 226 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
|
D | NoOpDrmManagerClientImpl.h | 54 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
|
D | DrmManagerService.h | 116 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
|
D | DrmManagerClientImpl.h | 295 …virtual status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray…
|
/frameworks/av/drm/drmserver/ |
D | DrmManager.cpp | 106 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()
|
D | DrmManagerService.cpp | 260 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo()
|
/frameworks/av/drm/libdrmframework/plugins/common/include/ |
D | IDrmEngine.h | 31 class DrmSupportInfo; variable 314 virtual DrmSupportInfo* getSupportInfo(int uniqueId) = 0;
|
D | DrmEngineBase.h | 80 DrmSupportInfo* getSupportInfo(int uniqueId); 370 virtual DrmSupportInfo* onGetSupportInfo(int uniqueId) = 0;
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/ |
D | FwdLockEngine.cpp | 178 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/ |
D | DrmPassthruPlugIn.cpp | 126 DrmSupportInfo* DrmPassthruPlugIn::onGetSupportInfo(int uniqueId) { in onGetSupportInfo() 128 DrmSupportInfo* drmSupportInfo = new DrmSupportInfo(); in onGetSupportInfo()
|
/frameworks/av/drm/libdrmframework/ |
D | NoOpDrmManagerClientImpl.cpp | 155 DrmSupportInfo** /* drmSupportInfoArray */) { in getAllSupportInfo() argument
|
D | DrmManagerClient.cpp | 115 status_t DrmManagerClient::getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo()
|
D | DrmManagerClientImpl.cpp | 250 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo()
|
/frameworks/av/drm/libdrmframework/plugins/passthru/include/ |
D | DrmPassthruPlugIn.h | 74 DrmSupportInfo* onGetSupportInfo(int uniqueId);
|
/frameworks/base/drm/jni/ |
D | android_drm_DrmManagerClient.cpp | 339 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()
|