Searched refs:ConfigEntry (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/ |
D | ViewerConfigJsonBuilderTest.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<Long, ViewerConfigParser.ConfigEntry> { in parseConfig()
|
D | LogParserTest.kt | 38 private var config: MutableMap<Long, ViewerConfigParser.ConfigEntry> = mutableMapOf() 68 config[70933285] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b", in parse() 87 config[123] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b %d %%" + in parse_formatting() 110 config[123] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b %d %%", in parse_invalidParamsTooMany() 132 config[123] = ViewerConfigParser.ConfigEntry("Test completed successfully: %b %d %%" + in parse_invalidParamsNotEnough()
|
D | ViewerConfigParserTest.kt | 226 val cfg1 = ViewerConfigParser.ConfigEntry("Test completed successfully: %b", in parseConfig()
|
/frameworks/base/tools/protologtool/src/com/android/protolog/tool/ |
D | ViewerConfigParser.kt | 90 data class ConfigEntry(val messageString: String, val level: String, val tag: String) in <lambda>() dataClass 92 open fun parseConfig(jsonReader: JsonReader): Map<Long, ConfigEntry> { in <lambda>() 116 msg.key to ConfigEntry( in <lambda>()
|
D | LogParser.kt | 50 configEntry: ViewerConfigParser.ConfigEntry, in <lambda>()
|