Home
last modified time | relevance | path

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

/tools/trebuchet/trebuchet/startup-summarizer/src/
DStartupSummarizer.kt99 …ds : MutableMap<String, ApplicationRecord>, startupEvent : StartupEvent, appName : String, compile… in addStartupRecord()
100 val applicationRecord = records.getOrPut(appName) { ApplicationRecord() } in addStartupRecord()
155 records.forEach { appName, record -> in printPlainText() method
157 println("$appName:") in printPlainText()
271 records.forEach { appName, record -> in printCSV() method
273 printAppRecordCSV(appName, record) in printCSV()
278 fun printAppRecordCSV(appName : String, record : ApplicationRecord) { in printAppRecordCSV()
280 printCompilerRecordCSV(appName, "quicken", record.quicken) in printAppRecordCSV()
284 printCompilerRecordCSV(appName, "speed", record.speed) in printAppRecordCSV()
288 printCompilerRecordCSV(appName, "speed-profile", record.speedProfile) in printAppRecordCSV()
[all …]
/tools/test/graphicsbenchmark/performance_tests/deviceside/src/com/android/game/qualification/device/
DMetricsReporter.java28 private String appName; field in MetricsReporter
31 public void begin(String appName) { in begin() argument
32 this.appName = appName; in begin()