Home
last modified time | relevance | path

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

/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DBugreportParserTest.java190 assertNotNull(bugreport.getSystemProps()); in testParse()
191 assertEquals(4, bugreport.getSystemProps().size()); in testParse()
582 assertNull(bugreport.getSystemProps()); in testNoSections()
619 assertNull(bugreport.getSystemProps()); in testNoSections()
DBugreportParserFuncTest.java59 assertNotNull(bugreport.getSystemProps()); in testParse()
60 assertTrue(bugreport.getSystemProps().size() > 0); in testParse()
85 bugreport.getSystemProps().size(), in testParse()
/tools/loganalysis/src/com/android/loganalysis/parser/
DBugreportParser.java236 if (mBugreport.getSystemProps() != null && in commit()
237 mBugreport.getSystemProps().containsKey(BOOTREASON_PROP)) { in commit()
238 bootreason = mBugreport.getSystemProps().get(BOOTREASON_PROP); in commit()
/tools/loganalysis/src/com/android/loganalysis/item/
DBugreportItem.java181 public SystemPropsItem getSystemProps() { in getSystemProps() method in BugreportItem