Searched refs:fileSuffix (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/drm/java/android/drm/
H A DDrmSupportInfo.java55 * @param fileSuffix File suffix that can be handled by this DRM plug-in.
59 public void addFileSuffix(String fileSuffix) { argument
60 if (fileSuffix == "") {
61 throw new IllegalArgumentException("fileSuffix is an empty string");
64 mFileSuffixList.add(fileSuffix);
181 * @param fileSuffix File suffix.
184 /* package */ boolean isSupportedFileSuffix(String fileSuffix) { argument
185 return mFileSuffixList.contains(fileSuffix);
/frameworks/av/drm/common/
H A DDrmSupportInfo.cpp91 status_t DrmSupportInfo::addFileSuffix(const String8& fileSuffix) { argument
92 mFileSuffixVector.push(fileSuffix);
/frameworks/av/include/drm/
H A DDrmSupportInfo.h144 status_t addFileSuffix(const String8& fileSuffix);
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp582 const String8 fileSuffix = path.getPathExtension(); local
587 if (drmSupportInfo.isSupportedFileSuffix(fileSuffix)) {

Completed in 102 milliseconds