Searched refs:infoType (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/drm/java/android/drm/
H A DDrmInfoStatus.java51 public final int infoType; field in class:DrmInfoStatus
69 * @param infoType The type of the DRM information processed. Must be a valid
74 public DrmInfoStatus(int statusCode, int infoType, ProcessedData data, String mimeType) { argument
75 if (!DrmInfoRequest.isValidType(infoType)) {
76 throw new IllegalArgumentException("infoType: " + infoType);
88 this.infoType = infoType;
H A DDrmInfo.java44 * @param infoType The type of information.
48 public DrmInfo(int infoType, byte[] data, String mimeType) { argument
49 mInfoType = infoType;
53 final String msg = "infoType: " + infoType + "," +
64 * @param infoType The type of information.
68 public DrmInfo(int infoType, String path, String mimeType) { argument
69 mInfoType = infoType;
80 final String msg = "infoType: " + infoType
[all...]
H A DDrmInfoRequest.java64 * @param infoType Type of information.
67 public DrmInfoRequest(int infoType, String mimeType) { argument
68 mInfoType = infoType;
71 final String msg = "infoType: " + infoType + "," +
149 /* package */ static boolean isValidType(int infoType) { argument
152 switch (infoType) {
H A DDrmManagerClient.java139 getEventType(status.infoType), null, attributes);
141 int infoType = (null != status) ? status.infoType : drmInfo.getInfoType();
143 getErrorType(infoType), null, attributes);
173 Object thisReference, int uniqueId, int infoType, String message) {
178 InfoHandler.INFO_EVENT_TYPE, uniqueId, infoType, message);
197 int infoType = msg.arg2;
200 switch (infoType) {
207 info = new DrmInfoEvent(uniqueId, infoType, message);
215 info = new DrmInfoEvent(uniqueId, infoType, messag
172 notify( Object thisReference, int uniqueId, int infoType, String message) argument
754 getEventType(int infoType) argument
767 getErrorType(int infoType) argument
[all...]
/frameworks/av/drm/common/
H A DDrmInfoEvent.cpp22 DrmInfoEvent::DrmInfoEvent(int uniqueId, int infoType, const String8 message) argument
24 mInfoType(infoType),
H A DDrmInfoStatus.cpp24 infoType(_infoType),
H A DDrmInfo.cpp21 DrmInfo::DrmInfo(int infoType, const DrmBuffer& drmBuffer, const String8& mimeType) : argument
22 mInfoType(infoType),
H A DDrmInfoRequest.cpp24 DrmInfoRequest::DrmInfoRequest(int infoType, const String8& mimeType) : argument
25 mInfoType(infoType), mMimeType(mimeType) {
H A DIDrmManagerService.cpp277 const int infoType = reply.readInt32(); local
290 drmInfoStatus = new DrmInfoStatus(statusCode, infoType, drmBuffer, mimeType);
321 const int infoType = reply.readInt32(); local
329 drmInfo = new DrmInfo(infoType, DrmBuffer(data, bufferSize), reply.readString8());
918 const int infoType = data.readInt32(); local
925 DrmInfo* drmInfo = new DrmInfo(infoType, drmBuffer, data.readString8());
939 reply->writeInt32(drmInfoStatus->infoType);
966 const int infoType = data.readInt32(); local
968 DrmInfoRequest* drmInfoRequest = new DrmInfoRequest(infoType, mimeType);
/frameworks/av/include/drm/
H A DDrmInfoStatus.h59 int infoType; member in class:android::DrmInfoStatus
H A DDrmInfoEvent.h77 * @param[in] infoType Type of information
80 DrmInfoEvent(int uniqueId, int infoType, const String8 message);
H A DDrmInfo.h39 * @param[in] infoType Type of information
43 DrmInfo(int infoType, const DrmBuffer& drmBuffer, const String8& mimeType);
H A DDrmInfoRequest.h54 * @param[in] infoType Type of information
57 DrmInfoRequest(int infoType, const String8& mimeType);
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp465 int infoType = pDrmInfoStatus->infoType; local
488 drmInfoStatus = env->NewObject(localRef, constructorId, statusCode, infoType,

Completed in 204 milliseconds