/frameworks/base/drm/java/android/drm/ |
H A D | DrmInfoStatus.java | 51 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 D | DrmInfo.java | 45 * @param infoType The type of information. 49 public DrmInfo(int infoType, byte[] data, String mimeType) { argument 50 mInfoType = infoType; 54 final String msg = "infoType: " + infoType + "," + 65 * @param infoType The type of information. 69 public DrmInfo(int infoType, String path, String mimeType) { argument 70 mInfoType = infoType; 81 final String msg = "infoType: " + infoType [all...] |
H A D | DrmInfoRequest.java | 64 * @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 D | DrmManagerClient.java | 150 getEventType(status.infoType), null, attributes); 152 int infoType = (null != status) ? status.infoType : drmInfo.getInfoType(); 154 getErrorType(infoType), null, attributes); 184 Object thisReference, int uniqueId, int infoType, String message) { 189 InfoHandler.INFO_EVENT_TYPE, uniqueId, infoType, message); 208 int infoType = msg.arg2; 211 switch (infoType) { 218 info = new DrmInfoEvent(uniqueId, infoType, message); 226 info = new DrmInfoEvent(uniqueId, infoType, messag 183 notify( Object thisReference, int uniqueId, int infoType, String message) argument 803 getEventType(int infoType) argument 816 getErrorType(int infoType) argument [all...] |
/frameworks/av/drm/common/ |
H A D | DrmInfoEvent.cpp | 22 DrmInfoEvent::DrmInfoEvent(int uniqueId, int infoType, const String8 &message) argument 24 mInfoType(infoType),
|
H A D | DrmInfoStatus.cpp | 24 infoType(_infoType),
|
H A D | DrmInfo.cpp | 21 DrmInfo::DrmInfo(int infoType, const DrmBuffer& drmBuffer, const String8& mimeType) : argument 22 mInfoType(infoType),
|
H A D | DrmInfoRequest.cpp | 24 DrmInfoRequest::DrmInfoRequest(int infoType, const String8& mimeType) : argument 25 mInfoType(infoType), mMimeType(mimeType) {
|
H A D | IDrmManagerService.cpp | 268 const int infoType = reply.readInt32(); local 281 drmInfoStatus = new DrmInfoStatus(statusCode, infoType, drmBuffer, mimeType); 320 const int infoType = reply.readInt32(); local 328 drmInfo = new DrmInfo(infoType, DrmBuffer(data, bufferSize), reply.readString8()); 940 const int infoType = data.readInt32(); local 952 DrmInfo* drmInfo = new DrmInfo(infoType, drmBuffer, data.readString8()); 966 reply->writeInt32(drmInfoStatus->infoType); 993 const int infoType = data.readInt32(); local 995 DrmInfoRequest* drmInfoRequest = new DrmInfoRequest(infoType, mimeType);
|
/frameworks/av/include/drm/ |
H A D | DrmInfoStatus.h | 59 int infoType; member in class:android::DrmInfoStatus
|
H A D | DrmInfoEvent.h | 77 * @param[in] infoType Type of information 80 DrmInfoEvent(int uniqueId, int infoType, const String8& message);
|
H A D | DrmInfo.h | 39 * @param[in] infoType Type of information 43 DrmInfo(int infoType, const DrmBuffer& drmBuffer, const String8& mimeType);
|
H A D | DrmInfoRequest.h | 54 * @param[in] infoType Type of information 57 DrmInfoRequest(int infoType, const String8& mimeType);
|
/frameworks/base/drm/jni/ |
H A D | android_drm_DrmManagerClient.cpp | 475 int infoType = pDrmInfoStatus->infoType; local 498 drmInfoStatus = env->NewObject(localRef, constructorId, statusCode, infoType,
|
/frameworks/native/vulkan/include/vulkan/ |
H A D | vulkan_core.h | 6051 typedef VkResult (VKAPI_PTR *PFN_vkGetShaderInfoAMD)(VkDevice device, VkPipeline pipeline, VkShaderStageFlagBits shaderStage, VkShaderInfoTypeAMD infoType, size_t* pInfoSize, void* pInfo); 6058 VkShaderInfoTypeAMD infoType,
|