Home
last modified time | relevance | path

Searched refs:CommandOptions (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/
H A DCommandOptionsTest.kt47 CommandOptions(arrayOf())
53 CommandOptions(testLine.split(' ').toTypedArray())
82 CommandOptions(testLine.split(' ').toTypedArray())
92 CommandOptions(testLine.split(' ').toTypedArray())
102 CommandOptions(testLine.split(' ').toTypedArray())
112 CommandOptions(testLine.split(' ').toTypedArray())
122 CommandOptions(testLine.split(' ').toTypedArray())
133 CommandOptions(testLine.split(' ').toTypedArray())
144 CommandOptions(testLine.split(' ').toTypedArray())
155 CommandOptions(testLine.split(' ').toTypedArray())
[all …]
H A DEndToEndTest.kt48 commandOptions = CommandOptions(arrayOf("transform-protolog-calls",
79 commandOptions = CommandOptions(arrayOf("generate-viewer-config",
117 commandOptions: CommandOptions
/aosp14/frameworks/base/tools/protologtool/src/com/android/protolog/tool/
H A DProtoLogTool.kt19 import com.android.protolog.tool.CommandOptions.Companion.USAGE
45 private fun processClasses(command: CommandOptions) {
148 private fun viewerConf(command: CommandOptions) {
196 private fun read(command: CommandOptions) {
205 val command = CommandOptions(args)
216 fun invoke(command: CommandOptions) {
223 CommandOptions.TRANSFORM_CALLS_CMD -> processClasses(command)
224 CommandOptions.GENERATE_CONFIG_CMD -> viewerConf(command)
225 CommandOptions.READ_LOG_CMD -> read(command)
H A DCommandOptions.kt21 class CommandOptions(args: Array<String>) { regex