Home
last modified time | relevance | path

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

/tools/loganalysis/src/com/android/loganalysis/parser/
DBugreportParser.java235 String bootreason = null; in commit() local
238 bootreason = mBugreport.getSystemProps().get(BOOTREASON_PROP); in commit()
240 bootreason = mCommandLine.get(BOOTREASON_KERNEL); in commit()
242 if (bootreason != null) { in commit()
243 Matcher m = KernelLogParser.BAD_BOOTREASONS.matcher(bootreason); in commit()
246 item.setStack("Last boot reason: " + bootreason.trim()); in commit()
252 m = KernelLogParser.GOOD_BOOTREASONS.matcher(bootreason); in commit()
255 item.setStack("Last boot reason: " + bootreason.trim()); in commit()