Home
last modified time | relevance | path

Searched refs:findApp (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tools/powermodel/src/com/android/powermodel/
DActivityReport.java42 public List<AppActivity> findApp(String pkg) { in findApp() method in ActivityReport
43 return mApps.findApp(pkg); in findApp()
46 public AppActivity findApp(SpecialApp specialApp) { in findApp() method in ActivityReport
47 return mApps.findApp(specialApp); in findApp()
57 final AppActivity global = mApps.findApp(SpecialApp.GLOBAL); in findGlobalComponent()
DPowerReport.java51 public List<AppPower> findApp(String pkg) { in findApp() method in PowerReport
52 return mApps.findApp(pkg); in findApp()
55 public AppPower findApp(SpecialApp specialApp) { in findApp() method in PowerReport
56 return mApps.findApp(specialApp); in findApp()
DAppList.java42 public List<APP> findApp(String pkg) { in findApp() method in AppList
52 public APP findApp(SpecialApp specialApp) { in findApp() method in AppList
/frameworks/base/tools/powermodel/test/com/android/powermodel/
DPowerReportTest.java71 final List<AppPower> gmailList = report.findApp("com.google.android.gm"); in testModemApp()
83 final AppPower remainder = report.findApp(SpecialApp.REMAINDER); in testModemRemainder()
106 final List<AppPower> gmailList = report.findApp("com.google.android.gm"); in testAppTotal()
116 final AppPower remainder = report.findApp(SpecialApp.REMAINDER); in testRemainderTotal()
DBatteryStatsReaderTest.java41 final AppActivity global = report.findApp(SpecialApp.GLOBAL); in testModemGlobal()
55 final List<AppActivity> gmailList = report.findApp("com.google.android.gm"); in testModemApp()
69 final AppActivity remainder = report.findApp(SpecialApp.REMAINDER); in testModemRemainder()