Home
last modified time | relevance | path

Searched refs:ConfigEntry (Results 1 – 9 of 9) sorted by relevance

/aosp12/packages/apps/Dialer/java/com/android/voicemail/impl/
H A DDialerVvmConfigManager.java40 private static class ConfigEntry implements Comparable<ConfigEntry> { class in DialerVvmConfigManager
45 ConfigEntry(CarrierIdentifierMatcher matcher, PersistableBundle config) { in ConfigEntry() method in DialerVvmConfigManager.ConfigEntry
55 public int compareTo(@NonNull ConfigEntry other) { in compareTo()
95 private static Map<String, SortedSet<ConfigEntry>> cachedConfigs;
97 private final Map<String, SortedSet<ConfigEntry>> configs;
116 for (ConfigEntry configEntry : configs.get(carrierIdentifier.mccMnc())) { in getConfig()
124 private static Map<String, SortedSet<ConfigEntry>> loadConfigs( in loadConfigs()
126 Map<String, SortedSet<ConfigEntry>> configs = new ArrayMap<>(); in loadConfigs()
149 SortedSet<ConfigEntry> set; in loadConfigs()
162 set.add(new ConfigEntry(matcherBuilder.build(), bundle)); in loadConfigs()
/aosp12/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/
H A DLogParserTest.kt38 private var config: MutableMap<Int, ViewerConfigParser.ConfigEntry> = mutableMapOf()
68 config[70933285] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b",
87 config[123] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b %d %% %o" +
110 config[123] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b %d %% %o",
132 config[123] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b %d %% %o" +
H A DViewerConfigBuilderTest.kt30 private val TEST1 = ViewerConfigParser.ConfigEntry("test1", LogLevel.INFO.name, TAG1)
31 private val TEST2 = ViewerConfigParser.ConfigEntry("test2", LogLevel.DEBUG.name, TAG2)
32 private val TEST3 = ViewerConfigParser.ConfigEntry("test3", LogLevel.ERROR.name, TAG2)
43 private fun parseConfig(json: String): Map<Int, ViewerConfigParser.ConfigEntry> {
H A DViewerConfigParserTest.kt226 val cfg1 = ViewerConfigParser.ConfigEntry("Test completed successfully: %b",
/aosp12/art/libnativeloader/
H A Dpublic_libraries.cpp45 using internal::ConfigEntry;
88 const std::function<Result<bool>(const struct ConfigEntry&)> always_true =
89 [](const struct ConfigEntry&) -> Result<bool> { return true; }; in __anond00d73f10202() argument
93 const std::function<Result<bool>(const ConfigEntry& /* entry */)>& filter_fn) { in ReadConfig()
126 config_file_path, [&company_name](const struct ConfigEntry& entry) -> Result<bool> { in ReadExtensionLibraries()
149 ReadConfig(config_file, [&for_preload](const struct ConfigEntry& entry) -> Result<bool> { in InitDefaultPublicLibraries()
368 const std::function<Result<bool>(const ConfigEntry& /* entry */)>& filter_fn) { in ParseConfig()
382 struct ConfigEntry entry = {.soname = "", .nopreload = false, .bitness = ALL}; in ParseConfig()
H A Dpublic_libraries.h60 struct ConfigEntry { struct
68 const std::function<Result<bool>(const ConfigEntry& /* entry */)>& filter_fn); argument
H A Dnative_loader_test.cpp36 using internal::ConfigEntry;
448 const std::function<Result<bool>(const struct ConfigEntry&)> always_true =
449 [](const struct ConfigEntry&) -> Result<bool> { return true; }; in __anon877c9db20102() argument
495 [](const struct ConfigEntry& entry) -> Result<bool> { return !entry.nopreload; }); in TEST()
516 [](const struct ConfigEntry& entry) -> Result<bool> { return !entry.nopreload; }); in TEST()
/aosp12/frameworks/base/tools/protologtool/src/com/android/protolog/tool/
H A DViewerConfigParser.kt90 data class ConfigEntry(val messageString: String, val level: String, val tag: String) dataClass
92 open fun parseConfig(jsonReader: JsonReader): Map<Int, ConfigEntry> {
116 msg.key to ConfigEntry(
H A DLogParser.kt50 configEntry: ViewerConfigParser.ConfigEntry,