Home
last modified time | relevance | path

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

/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DBugreportParserTest.java193 assertNotNull(bugreport.getDumpsys()); in testParse()
194 assertNotNull(bugreport.getDumpsys().getBatteryStats()); in testParse()
195 assertNotNull(bugreport.getDumpsys().getPackageStats()); in testParse()
577 assertNull(bugreport.getDumpsys()); in testNoSections()
614 assertNotNull(bugreport.getDumpsys()); in testNoSections()
679 assertNotNull(bugreport.getDumpsys()); in testSectionHeader()
680 assertNotNull(bugreport.getDumpsys().getBatteryStats()); in testSectionHeader()
681 assertNotNull(bugreport.getDumpsys().getPackageStats()); in testSectionHeader()
682 assertNotNull(bugreport.getDumpsys().getProcStats()); in testSectionHeader()
/tools/loganalysis/src/com/android/loganalysis/rule/
DAbstractPowerRule.java40 mPowerSummaryAnalysisItem = mBugreportItem.getDumpsys().getBatteryStats(). in AbstractPowerRule()
42 mPowerDetailedAnalysisItem = mBugreportItem.getDumpsys().getBatteryStats(). in AbstractPowerRule()
44 mProcStatsItem = mBugreportItem.getDumpsys().getProcStats(); in AbstractPowerRule()
45 mWifiStatsItem = mBugreportItem.getDumpsys().getWifiStats(); in AbstractPowerRule()
DWifiStatsRule.java51 if (mBugreportItem.getDumpsys() == null || getTimeOnBattery() <= 0) { in applyRule()
54 DumpsysWifiStatsItem dumpsysWifiStatsItem = mBugreportItem.getDumpsys().getWifiStats(); in applyRule()
/tools/loganalysis/src/com/android/loganalysis/item/
DBugreportItem.java195 public DumpsysItem getDumpsys() { in getDumpsys() method in BugreportItem