Searched refs:ConfigEntry (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/ |
H A D | LogParserTest.kt | 38 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 %%" + 110 config[123] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b %d %%", 132 config[123] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b %d %%" +
|
H A D | ViewerConfigBuilderTest.kt | 30 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 D | ViewerConfigParserTest.kt | 226 val cfg1 = ViewerConfigParser.ConfigEntry("Test completed successfully: %b",
|
/aosp14/frameworks/base/tools/protologtool/src/com/android/protolog/tool/ |
H A D | ViewerConfigParser.kt | 90 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 D | LogParser.kt | 50 configEntry: ViewerConfigParser.ConfigEntry,
|