HomeSort by relevance Sort by last modified time
    Searched refs:fileSuffix (Results 1 - 4 of 4) sorted by null

  /cts/tests/tests/drm/src/android/drm/cts/
DrmSupportInfoTest.java 107 private static void checkAddInvalidFileSuffix(String fileSuffix) throws Exception {
110 info.addFileSuffix(fileSuffix);
112 fail("File suffix '" + fileSuffix + "' was accepted for DrmSupportInfo");
118 private static void checkAddValidFileSuffix(String fileSuffix) throws Exception {
120 info.addFileSuffix(fileSuffix);
124 assertEquals(suffix, fileSuffix);
  /frameworks/av/drm/common/
DrmSupportInfo.cpp 91 status_t DrmSupportInfo::addFileSuffix(const String8& fileSuffix) {
92 mFileSuffixVector.push(fileSuffix);
  /frameworks/av/include/drm/
DrmSupportInfo.h 139 * Adds the filesuffix to the list of supported file types
141 * @param[in] filesuffix file suffix to be added
144 status_t addFileSuffix(const String8& fileSuffix);
  /frameworks/av/drm/drmserver/
DrmManager.cpp 577 const String8 fileSuffix = path.getPathExtension();
582 if (drmSupportInfo.isSupportedFileSuffix(fileSuffix)) {

Completed in 245 milliseconds