OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:drmSupportInfoArray
(Results
1 - 11
of
11
) sorted by null
/frameworks/av/drm/libdrmframework/include/
DrmManagerService.h
97
status_t getAllSupportInfo(int uniqueId, int* length, DrmSupportInfo**
drmSupportInfoArray
);
IDrmManagerService.h
139
int uniqueId, int* length, DrmSupportInfo**
drmSupportInfoArray
) = 0;
226
int uniqueId, int* length, DrmSupportInfo**
drmSupportInfoArray
);
DrmManager.h
110
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
239
int uniqueId, int* length, DrmSupportInfo**
drmSupportInfoArray
) {
241
if ((NULL !=
drmSupportInfoArray
) && (NULL != length)) {
243
uniqueId, length,
drmSupportInfoArray
);
/frameworks/av/drm/drmserver/
DrmManagerService.cpp
192
int uniqueId, int* length, DrmSupportInfo**
drmSupportInfoArray
) {
194
return mDrmManager->getAllSupportInfo(uniqueId, length,
drmSupportInfoArray
);
DrmManager.cpp
373
int uniqueId, int* length, DrmSupportInfo**
drmSupportInfoArray
) {
394
*
drmSupportInfoArray
= new DrmSupportInfo[validPlugins];
396
(*
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
568
int uniqueId, int* length, DrmSupportInfo**
drmSupportInfoArray
) {
580
*
drmSupportInfoArray
= new DrmSupportInfo[arraySize];
596
(*
drmSupportInfoArray
)[index] = drmSupportInfo;
[
all
...]
Completed in 247 milliseconds