HomeSort by relevance Sort by last modified time
    Searched refs:drmSupportInfoArray (Results 1 - 11 of 11) sorted by null

  /frameworks/av/drm/libdrmframework/include/
DrmManagerService.h 99 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
IDrmManagerService.h 141 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) = 0;
230 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DrmManager.h 112 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
DrmManagerClientImpl.h 289 * @param[out] length Number of elements in drmSupportInfoArray
290 * @param[out] drmSupportInfoArray Array contains all DrmSupportInfo
295 status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray);
  /frameworks/av/include/drm/
DrmManagerClient.h 374 * @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/
DrmManagerClient.cpp 115 status_t DrmManagerClient::getAllSupportInfo(int* length, DrmSupportInfo** drmSupportInfoArray) {
116 return mDrmManagerClientImpl->getAllSupportInfo(mUniqueId, length, drmSupportInfoArray);
DrmManagerClientImpl.cpp 248 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
250 if ((NULL != drmSupportInfoArray) && (NULL != length)) {
252 uniqueId, length, drmSupportInfoArray);
  /frameworks/av/drm/drmserver/
DrmManagerService.cpp 197 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
199 return mDrmManager->getAllSupportInfo(uniqueId, length, drmSupportInfoArray);
DrmManager.cpp 388 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
409 *drmSupportInfoArray = new DrmSupportInfo[validPlugins];
411 (*drmSupportInfoArray)[i] = drmSupportInfoList[i];
  /frameworks/base/drm/jni/
android_drm_DrmManagerClient.cpp 337 DrmSupportInfo* drmSupportInfoArray = NULL;
340 getDrmManagerClientImpl(env, thiz)->getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray);
347 DrmSupportInfo info = drmSupportInfoArray[i];
376 delete [] drmSupportInfoArray; drmSupportInfoArray = NULL;
  /frameworks/av/drm/common/
IDrmManagerService.cpp 580 int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) {
592 *drmSupportInfoArray = new DrmSupportInfo[arraySize];
608 (*drmSupportInfoArray)[index] = drmSupportInfo;
    [all...]

Completed in 44 milliseconds