Home
last modified time | relevance | path

Searched refs:parseContentProtectionGroupsConfig (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/contentcapture/
DContentCaptureManagerServiceTest.java552 assertThat(service.parseContentProtectionGroupsConfig(null)).isEmpty(); in parseContentProtectionGroupsConfig_null()
559 assertThat(service.parseContentProtectionGroupsConfig("")).isEmpty(); in parseContentProtectionGroupsConfig_empty()
566 assertThat(service.parseContentProtectionGroupsConfig("a")) in parseContentProtectionGroupsConfig_singleValue()
574 assertThat(service.parseContentProtectionGroupsConfig("a,b")) in parseContentProtectionGroupsConfig_multipleValues()
582 assertThat(service.parseContentProtectionGroupsConfig("a,b;c;d,e")) in parseContentProtectionGroupsConfig_multipleGroups()
590 assertThat(service.parseContentProtectionGroupsConfig("a;b;;;c;,d,,e,;,;")) in parseContentProtectionGroupsConfig_emptyValues()
/frameworks/base/services/contentcapture/java/com/android/server/contentcapture/
DContentCaptureManagerService.java595 parseContentProtectionGroupsConfig(contentProtectionRequiredGroupsConfig); in setFineTuneParamsFromDeviceConfig()
597 parseContentProtectionGroupsConfig(contentProtectionOptionalGroupsConfig); in setFineTuneParamsFromDeviceConfig()
1057 protected List<List<String>> parseContentProtectionGroupsConfig(@Nullable String config) { in parseContentProtectionGroupsConfig() method in ContentCaptureManagerService