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.java149 getEventType(status.infoType), null, attributes);
151 int infoType = (null != status) ? status.infoType : drmInfo.getInfoType();
153 getErrorType(infoType), null, attributes);
183 Object thisReference, int uniqueId, int infoType, String message) {
188 InfoHandler.INFO_EVENT_TYPE, uniqueId, infoType, message);
207 int infoType = msg.arg2;
210 switch (infoType) {
217 info = new DrmInfoEvent(uniqueId, infoType, message);
225 info = new DrmInfoEvent(uniqueId, infoType, messag
182 notify( Object thisReference, int uniqueId, int infoType, String message) argument
789 getEventType(int infoType) argument
802 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.cpp267 const int infoType = reply.readInt32(); local
280 drmInfoStatus = new DrmInfoStatus(statusCode, infoType, drmBuffer, mimeType);
317 const int infoType = reply.readInt32(); local
325 drmInfo = new DrmInfo(infoType, DrmBuffer(data, bufferSize), reply.readString8());
935 const int infoType = data.readInt32(); local
942 DrmInfo* drmInfo = new DrmInfo(infoType, drmBuffer, data.readString8());
956 reply->writeInt32(drmInfoStatus->infoType);
983 const int infoType = data.readInt32(); local
985 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.cpp474 int infoType = pDrmInfoStatus->infoType; local
497 drmInfoStatus = env->NewObject(localRef, constructorId, statusCode, infoType,

Completed in 147 milliseconds