Searched defs:mimeType (Results 1 - 25 of 89) sorted by relevance

1234

/frameworks/base/drm/java/android/drm/
H A DDrmInfoStatus.java55 public final String mimeType; field in class:DrmInfoStatus
72 * @param mimeType The MIME type.
74 public DrmInfoStatus(int statusCode, int infoType, ProcessedData data, String mimeType) { argument
83 if (mimeType == null || mimeType == "") {
84 throw new IllegalArgumentException("mimeType is null or an empty string");
90 this.mimeType = mimeType;
H A DDrmRights.java50 * @param mimeType MIME type. Must not be null or an empty string.
52 public DrmRights(String rightsFilePath, String mimeType) { argument
54 instantiate(file, mimeType);
61 * @param mimeType MIME type. Must not be null or an empty string.
64 public DrmRights(String rightsFilePath, String mimeType, String accountId) { argument
65 this(rightsFilePath, mimeType);
74 * @param mimeType MIME type. Must not be null or an empty string.
79 String rightsFilePath, String mimeType, String accountId, String subscriptionId) {
80 this(rightsFilePath, mimeType);
90 * @param mimeType MIM
78 DrmRights( String rightsFilePath, String mimeType, String accountId, String subscriptionId) argument
92 DrmRights(File rightsFile, String mimeType) argument
96 instantiate(File rightsFile, String mimeType) argument
118 DrmRights(ProcessedData data, String mimeType) argument
[all...]
H A DDrmInfo.java46 * @param mimeType The MIME type.
48 public DrmInfo(int infoType, byte[] data, String mimeType) { argument
50 mMimeType = mimeType;
54 "mimeType: " + mimeType + "," +
66 * @param mimeType The MIME type.
68 public DrmInfo(int infoType, String path, String mimeType) { argument
70 mMimeType = mimeType;
81 "mimeType: " + mimeType
[all...]
H A DDrmInfoRequest.java65 * @param mimeType MIME type.
67 public DrmInfoRequest(int infoType, String mimeType) { argument
69 mMimeType = mimeType;
72 "mimeType: " + mimeType;
H A DDrmSupportInfo.java38 * @param mimeType MIME type that can be handles by this DRM plug-in.
41 public void addMimeType(String mimeType) { argument
42 if (mimeType == null) {
43 throw new IllegalArgumentException("mimeType is null");
45 if (mimeType == "") {
46 throw new IllegalArgumentException("mimeType is an empty string");
49 mMimeTypeList.add(mimeType);
157 * @param mimeType MIME type.
159 * Null or empty string is not a supported mimeType.
161 /* package */ boolean isSupportedMimeType(String mimeType) { argument
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DContactEntry.java33 public ContentValuesBuilder addContentValues(String mimeType) { argument
35 contentValues.put(Data.MIMETYPE, mimeType);
H A DContentValuesVerifierElem.java35 public ContentValuesBuilder addExpected(String mimeType) { argument
37 contentValues.put(Data.MIMETYPE, mimeType);
/frameworks/av/drm/common/
H A DDrmRights.cpp22 DrmRights::DrmRights(const String8& rightsFilePath, const String8& mimeType, argument
24 mMimeType(mimeType),
35 DrmRights::DrmRights(const DrmBuffer& rightsData, const String8& mimeType, argument
38 mMimeType(mimeType),
H A DDrmInfoRequest.cpp24 DrmInfoRequest::DrmInfoRequest(int infoType, const String8& mimeType) : argument
25 mInfoType(infoType), mMimeType(mimeType) {
H A DDrmInfo.cpp21 DrmInfo::DrmInfo(int infoType, const DrmBuffer& drmBuffer, const String8& mimeType) : argument
24 mMimeType(mimeType) {
H A DDrmSupportInfo.cpp45 bool DrmSupportInfo::isSupportedMimeType(const String8& mimeType) const {
46 if (String8("") == mimeType) {
53 if (!strcasecmp(item.string(), mimeType.string())) {
86 status_t DrmSupportInfo::addMimeType(const String8& mimeType) { argument
87 mMimeTypeVector.push(mimeType);
/frameworks/av/drm/libdrmframework/plugins/common/include/
H A DDrmEngineBase.h58 int getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType);
91 const DrmBuffer& buf, const String8& mimeType);
238 * @param[in] mimeType Mime type of the content or null.
243 int uniqueId, const String8& path, const String8& mimeType) = 0;
445 * @param[in] mimeType Mime type of the protected content
450 const DrmBuffer& buf, const String8& mimeType) {
449 onOpenDecryptSession(int uniqueId, DecryptHandle* decryptHandle, const DrmBuffer& buf, const String8& mimeType) argument
/frameworks/av/include/drm/
H A DDrmInfoStatus.h61 String8 mimeType; member in class:android::DrmInfoStatus
/frameworks/base/core/java/android/webkit/
H A DCertTool.java75 static String getCertType(String mimeType) { argument
76 return sCertificateTypeMap.get(mimeType);
H A DKeyStoreHandler.java36 public KeyStoreHandler(String mimeType) { argument
37 mMimeType = mimeType;
H A DMimeTypeMap.java75 * @param mimeType A MIME type (i.e. text/plain)
76 * @return True iff there is a mimeType entry in the map.
78 public boolean hasMimeType(String mimeType) { argument
79 return MimeUtils.hasMimeType(mimeType);
109 * @param mimeType A MIME type (i.e. text/plain)
112 public String getExtensionFromMimeType(String mimeType) { argument
113 return MimeUtils.guessExtensionFromMimeType(mimeType);
121 * @param mimeType MIME type provided by the server.
126 /* package */ String remapGenericMimeType(String mimeType, String url, argument
130 if ("text/plain".equals(mimeType) ||
[all...]
H A DWebResourceResponse.java40 * @param mimeType the resource response's MIME type, for example text/html
44 public WebResourceResponse(String mimeType, String encoding, argument
46 mMimeType = mimeType;
54 * @param mimeType the resource response's MIME type
56 public void setMimeType(String mimeType) { argument
57 mMimeType = mimeType;
/frameworks/base/media/java/android/media/
H A DMediaScannerClient.java35 public void setMimeType(String mimeType); argument
/frameworks/opt/mms/src/java/com/google/android/mms/util/
H A DDrmConvertSession.java44 * @param mimeType Mimetype of content that shall be converted.
47 public static DrmConvertSession open(Context context, String mimeType) { argument
50 if (context != null && mimeType != null && !mimeType.equals("")) {
54 convertSessionId = drmClient.openConvertSession(mimeType);
56 Log.w(TAG, "Conversion of Mimetype: " + mimeType
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListWithMailMessages.java122 final String mimeType = "text/html"; field in class:ListWithMailMessages.MyAdapter
139 body.loadData(message.getBody(), mimeType, null);
/frameworks/ex/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java79 public static boolean isImageMimeType(String mimeType) { argument
80 return mimeType != null && mimeType.startsWith("image/");
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java83 public static boolean isImageMimeType(String mimeType) { argument
84 return mimeType != null && mimeType.startsWith("image/");
/frameworks/av/drm/libdrmframework/plugins/common/util/src/
H A DMimeTypeUtil.cpp121 * @param mimeType - mimetype in lower case to convert.
125 String8 MimeTypeUtil::convertMimeType(String8& mimeType) { argument
126 String8 result = mimeType;
131 pMimeType = mimeType.string();
/frameworks/av/media/libstagefright/
H A DDataSource.cpp74 String8 *mimeType, float *confidence, sp<AMessage> *meta) {
75 *mimeType = "";
87 *mimeType = newMimeType;
73 sniff( String8 *mimeType, float *confidence, sp<AMessage> *meta) argument
H A DStagefrightMediaScanner.cpp108 const char *path, const char *mimeType,
114 MediaScanResult result = processFileInternal(path, mimeType, client);
120 const char *path, const char *mimeType,
107 processFile( const char *path, const char *mimeType, MediaScannerClient &client) argument
119 processFileInternal( const char *path, const char *mimeType, MediaScannerClient &client) argument

Completed in 3386 milliseconds

1234