Searched refs:DrmSupportInfo (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/drm/common/
H A DDrmSupportInfo.cpp17 #include <drm/DrmSupportInfo.h>
22 DrmSupportInfo::DrmSupportInfo() { function in class:DrmSupportInfo
26 DrmSupportInfo::DrmSupportInfo(const DrmSupportInfo& drmSupportInfo): function in class:DrmSupportInfo
33 bool DrmSupportInfo::operator<(const DrmSupportInfo& drmSupportInfo) const {
39 bool DrmSupportInfo::operator==(const DrmSupportInfo
[all...]
H A DAndroid.mk28 DrmSupportInfo.cpp \
H A DDrmEngineBase.cpp118 DrmSupportInfo* DrmEngineBase::getSupportInfo(int uniqueId) {
H A DIDrmManagerService.cpp32 #include <drm/DrmSupportInfo.h>
567 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
579 *drmSupportInfoArray = new DrmSupportInfo[arraySize];
582 DrmSupportInfo drmSupportInfo;
1231 DrmSupportInfo* drmSupportInfoArray = NULL;
1237 DrmSupportInfo drmSupportInfo = drmSupportInfoArray[i];
1240 DrmSupportInfo::FileSuffixIterator fileSuffixIt
1247 DrmSupportInfo::MimeTypeIterator mimeTypeIt = drmSupportInfo.getMimeTypeIterator();
/frameworks/base/include/drm/
H A DDrmSupportInfo.h29 * DrmSupportInfo instance.
32 class DrmSupportInfo { class in namespace:android
38 friend class DrmSupportInfo;
40 MimeTypeIterator(DrmSupportInfo* drmSupportInfo)
52 DrmSupportInfo* mDrmSupportInfo;
60 friend class DrmSupportInfo;
63 FileSuffixIterator(DrmSupportInfo* drmSupportInfo)
75 DrmSupportInfo* mDrmSupportInfo;
81 * Constructor for DrmSupportInfo
83 DrmSupportInfo();
[all...]
H A DDrmManagerClient.h32 class DrmSupportInfo;
358 * Retrieves all DrmSupportInfo instance that native DRM framework can handle.
362 * @param[out] drmSupportInfoArray Array contains all DrmSupportInfo
367 status_t getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray);
/frameworks/base/drm/java/android/drm/
H A DDrmSupportInfo.java30 public class DrmSupportInfo { class
111 if (object instanceof DrmSupportInfo) {
112 result = mFileSuffixList.equals(((DrmSupportInfo) object).mFileSuffixList) &&
113 mMimeTypeList.equals(((DrmSupportInfo) object).mMimeTypeList) &&
114 mDescription.equals(((DrmSupportInfo) object).mDescription);
H A DDrmManagerClient.java301 DrmSupportInfo[] supportInfos = _getAllSupportInfo(mUniqueId);
831 private native DrmSupportInfo[] _getAllSupportInfo(int uniqueId);
/frameworks/base/drm/libdrmframework/include/
H A DDrmManager.h40 class DrmSupportInfo;
112 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
153 KeyedVector< DrmSupportInfo, String8 > mSupportInfoToPlugInIdMap;
H A DIDrmManagerService.h34 class DrmSupportInfo;
140 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) = 0;
223 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
H A DDrmManagerService.h99 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
H A DDrmManagerClientImpl.h284 * Retrieves all DrmSupportInfo instance that native DRM framework can handle.
289 * @param[out] drmSupportInfoArray Array contains all DrmSupportInfo
294 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
/frameworks/base/drm/libdrmframework/plugins/common/include/
H A DIDrmEngine.h31 class DrmSupportInfo;
310 * @return DrmSupportInfo
313 virtual DrmSupportInfo* getSupportInfo(int uniqueId) = 0;
H A DDrmEngineBase.h80 DrmSupportInfo* getSupportInfo(int uniqueId);
361 * @return DrmSupportInfo
364 virtual DrmSupportInfo* onGetSupportInfo(int uniqueId) = 0;
/frameworks/base/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h27 #include <DrmSupportInfo.h>
314 * @return DrmSupportInfo
317 DrmSupportInfo* onGetSupportInfo(int uniqueId);
/frameworks/base/drm/libdrmframework/plugins/passthru/src/
H A DDrmPassthruPlugIn.cpp29 #include <drm/DrmSupportInfo.h>
125 DrmSupportInfo* DrmPassthruPlugIn::onGetSupportInfo(int uniqueId) {
127 DrmSupportInfo* drmSupportInfo = new DrmSupportInfo();
/frameworks/base/drm/drmserver/
H A DDrmManager.cpp29 #include <drm/DrmSupportInfo.h>
116 DrmSupportInfo* info = mPlugInManager.getPlugIn(plugInPath).getSupportInfo(0);
196 DrmSupportInfo* info = rDrmEngine.getSupportInfo(0);
398 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
405 Vector<DrmSupportInfo> drmSupportInfoList;
409 DrmSupportInfo* drmSupportInfo
419 *drmSupportInfoArray = new DrmSupportInfo[validPlugins];
561 const DrmSupportInfo& drmSupportInfo = mSupportInfoToPlugInIdMap.keyAt(index);
577 const DrmSupportInfo& drmSupportInfo = mSupportInfoToPlugInIdMap.keyAt(index);
H A DDrmManagerService.cpp205 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
/frameworks/base/drm/libdrmframework/plugins/passthru/include/
H A DDrmPassthruPlugIn.h74 DrmSupportInfo* onGetSupportInfo(int uniqueId);
/frameworks/base/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp32 #include <DrmSupportInfo.h>
163 DrmSupportInfo* FwdLockEngine::onGetSupportInfo(int uniqueId) {
164 DrmSupportInfo* pSupportInfo = new DrmSupportInfo();
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp30 #include <drm/DrmSupportInfo.h>
345 DrmSupportInfo* drmSupportInfoArray = NULL;
350 jclass clazz = env->FindClass("android/drm/DrmSupportInfo");
355 DrmSupportInfo info = drmSupportInfoArray[i];
368 DrmSupportInfo::MimeTypeIterator iterator = info.getMimeTypeIterator();
374 DrmSupportInfo::FileSuffixIterator it = info.getFileSuffixIterator();
729 {"_getAllSupportInfo", "(I)[Landroid/drm/DrmSupportInfo;",
/frameworks/base/drm/libdrmframework/
H A DDrmManagerClient.cpp115 status_t DrmManagerClient::getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray) {
H A DDrmManagerClientImpl.cpp248 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {

Completed in 291 milliseconds