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.cpp239 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
241 if ((NULL != drmSupportInfoArray) && (NULL != length)) { in getAllSupportInfo()
243 uniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
/frameworks/av/drm/drmserver/
DDrmManagerService.cpp192 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
194 return mDrmManager->getAllSupportInfo(uniqueId, length, drmSupportInfoArray); in getAllSupportInfo()
DDrmManager.cpp373 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
394 *drmSupportInfoArray = new DrmSupportInfo[validPlugins]; in getAllSupportInfo()
396 (*drmSupportInfoArray)[i] = drmSupportInfoList[i]; in getAllSupportInfo()
/frameworks/av/drm/libdrmframework/include/
DIDrmManagerService.h139 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) = 0;
226 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DDrmManagerService.h97 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DDrmManagerClientImpl.h295 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DDrmManager.h110 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
/frameworks/av/include/drm/
DDrmManagerClient.h380 status_t getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray);
/frameworks/base/drm/jni/
Dandroid_drm_DrmManagerClient.cpp337 DrmSupportInfo* drmSupportInfoArray = NULL; in android_drm_DrmManagerClient_getAllSupportInfo() local
340 getDrmManagerClientImpl(env, thiz)->getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray); in android_drm_DrmManagerClient_getAllSupportInfo()
347 DrmSupportInfo info = drmSupportInfoArray[i]; in android_drm_DrmManagerClient_getAllSupportInfo()
376 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL; in android_drm_DrmManagerClient_getAllSupportInfo()
/frameworks/av/drm/common/
DIDrmManagerService.cpp568 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { in getAllSupportInfo() argument
580 *drmSupportInfoArray = new DrmSupportInfo[arraySize]; in getAllSupportInfo()
596 (*drmSupportInfoArray)[index] = drmSupportInfo; in getAllSupportInfo()
1272 DrmSupportInfo* drmSupportInfoArray = NULL; in onTransact() local
1274 status_t status = getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray); in onTransact()
1278 DrmSupportInfo drmSupportInfo = drmSupportInfoArray[i]; in onTransact()
1294 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL; in onTransact()