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

/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp339 DrmSupportInfo* drmSupportInfoArray = NULL; local
342 getDrmManagerClientImpl(env, thiz)->getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray);
349 DrmSupportInfo info = drmSupportInfoArray[i];
378 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL;
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp568 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
580 *drmSupportInfoArray = new DrmSupportInfo[arraySize];
596 (*drmSupportInfoArray)[index] = drmSupportInfo;
1272 DrmSupportInfo* drmSupportInfoArray = NULL; local
1274 status_t status = getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray);
1278 DrmSupportInfo drmSupportInfo = drmSupportInfoArray[i];
1294 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL;
567 getAllSupportInfo( int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) argument
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp373 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
394 *drmSupportInfoArray = new DrmSupportInfo[validPlugins];
396 (*drmSupportInfoArray)[i] = drmSupportInfoList[i];
372 getAllSupportInfo( int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) argument
H A DDrmManagerService.cpp203 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
205 return mDrmManager->getAllSupportInfo(uniqueId, length, drmSupportInfoArray);
202 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.cpp250 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
252 if ((NULL != drmSupportInfoArray) && (NULL != length)) {
254 uniqueId, length, drmSupportInfoArray);
249 getAllSupportInfo( int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) argument
H A DNoOpDrmManagerClientImpl.cpp106 status_t NoOpDrmManagerClientImpl::getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) { argument

Completed in 259 milliseconds