Searched refs:drmSupportInfoArray (Results 1 - 13 of 13) sorted by relevance

/frameworks/av/drm/libdrmframework/include/
H A DDrmManagerService.h97 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
H A DNoOpDrmManagerClientImpl.h54 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
H A DDrmManager.h110 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
H A DDrmManagerClientImpl.h289 * @param[out] length Number of elements in drmSupportInfoArray
290 * @param[out] drmSupportInfoArray Array contains all DrmSupportInfo
295 virtual status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
H A DIDrmManagerService.h139 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) = 0;
226 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
/frameworks/av/include/drm/
H A DDrmManagerClient.h374 * @param[out] length Number of elements in drmSupportInfoArray
375 * @param[out] drmSupportInfoArray Array contains all DrmSupportInfo
380 status_t getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray);
/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
/frameworks/av/drm/drmserver/
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
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
/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

Completed in 124 milliseconds