Home
last modified time | relevance | path

Searched refs:drmSupportInfoArray (Results 1 – 11 of 11) sorted by relevance

/frameworks/av/drm/libdrmframework/
DDrmManagerClient.cpp115 status_t DrmManagerClient::getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
116 return mDrmManagerClientImpl->getAllSupportInfo(mUniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
DDrmManagerClientImpl.cpp248 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
250 if ((NULL != drmSupportInfoArray) && (NULL != length)) { in getAllSupportInfo()
252 uniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
/frameworks/av/drm/drmserver/
DDrmManagerService.cpp197 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
199 return mDrmManager->getAllSupportInfo(uniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
DDrmManager.cpp398 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
419 *drmSupportInfoArray = new DrmSupportInfo[validPlugins]; in getAllSupportInfo()
421 (*drmSupportInfoArray)[i] = drmSupportInfoList[i]; in getAllSupportInfo()
/frameworks/av/drm/libdrmframework/include/
DIDrmManagerService.h140 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) = 0;
226 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DDrmManagerService.h99 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DDrmManagerClientImpl.h294 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DDrmManager.h112 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
/frameworks/base/drm/jni/
Dandroid_drm_DrmManagerClient.cpp331 DrmSupportInfo* drmSupportInfoArray = NULL; in android_drm_DrmManagerClient_getAllSupportInfo() local
334 getDrmManagerClientImpl(env, thiz)->getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray); in android_drm_DrmManagerClient_getAllSupportInfo()
341 DrmSupportInfo info = drmSupportInfoArray[i]; in android_drm_DrmManagerClient_getAllSupportInfo()
370 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL; in android_drm_DrmManagerClient_getAllSupportInfo()
/frameworks/av/include/drm/
DDrmManagerClient.h369 status_t getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray);
/frameworks/av/drm/common/
DIDrmManagerService.cpp567 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
579 *drmSupportInfoArray = new DrmSupportInfo[arraySize]; in getAllSupportInfo()
595 (*drmSupportInfoArray)[index] = drmSupportInfo; in getAllSupportInfo()
1243 DrmSupportInfo* drmSupportInfoArray = NULL; in onTransact() local
1245 status_t status = getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray); in onTransact()
1249 DrmSupportInfo drmSupportInfo = drmSupportInfoArray[i]; in onTransact()
1265 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL; in onTransact()