Searched defs:drmSupportInfoArray (Results 1 - 6 of 6) sorted by last modified time

/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp337 DrmSupportInfo* drmSupportInfoArray = NULL; local
340 getDrmManagerClientImpl(env, thiz)->getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray);
347 DrmSupportInfo info = drmSupportInfoArray[i];
376 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL;
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp578 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
590 *drmSupportInfoArray = new DrmSupportInfo[arraySize];
606 (*drmSupportInfoArray)[index] = drmSupportInfo;
1293 DrmSupportInfo* drmSupportInfoArray = NULL; local
1295 status_t status = getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray);
1299 DrmSupportInfo drmSupportInfo = drmSupportInfoArray[i];
1315 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL;
577 getAllSupportInfo( int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) argument
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp398 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
419 *drmSupportInfoArray = new DrmSupportInfo[validPlugins];
421 (*drmSupportInfoArray)[i] = drmSupportInfoList[i];
397 getAllSupportInfo( int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) argument
H A DDrmManagerService.cpp197 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
199 return mDrmManager->getAllSupportInfo(uniqueId, length, drmSupportInfoArray);
196 getAllSupportInfo( int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) argument
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClient.cpp115 status_t DrmManagerClient::getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray) { argument
116 return mDrmManagerClientImpl->getAllSupportInfo(mUniqueId, length, drmSupportInfoArray);
H A DDrmManagerClientImpl.cpp248 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
250 if ((NULL != drmSupportInfoArray) && (NULL != length)) {
252 uniqueId, length, drmSupportInfoArray);
247 getAllSupportInfo( int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) argument

Completed in 161 milliseconds