Home
last modified time | relevance | path

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

/tools/loganalysis/src/com/android/loganalysis/parser/
DBugreportParser.java173 addSectionParser(mMemInfoParser, MEM_INFO_SECTION_REGEX); in setup()
174 addSectionParser(mProcrankParser, PROCRANK_SECTION_REGEX); in setup()
175 addSectionParser(mTopParser, TOP_SECTION_REGEX); in setup()
176 addSectionParser(mSystemPropsParser, SYSTEM_PROP_SECTION_REGEX); in setup()
177 addSectionParser(mTracesParser, ANR_TRACES_SECTION_REGEX); in setup()
178 addSectionParser(mLogcatParser, SYSTEM_LOG_SECTION_REGEX); in setup()
179 addSectionParser(mKernelLogParser, KERNEL_LOG_SECTION_REGEX); in setup()
180 addSectionParser(mLastKmsgParser, LAST_KMSG_SECTION_REGEX); in setup()
181 addSectionParser(mDumpsysParser, DUMPSYS_SECTION_REGEX); in setup()
182 addSectionParser(mActivityServiceParser, ACTIVITY_SERVICE_SECTION_REGEX); in setup()
[all …]
DDumpsysParser.java68 addSectionParser(mBatteryStatsParser, BATTERY_STATS_SECTION_REGEX); in setup()
69 addSectionParser(mPackageStatsParser, PACKAGE_SECTION_REGEX); in setup()
70 addSectionParser(mProcStatsParser, PROC_STATS_SECTION_REGEX); in setup()
71 addSectionParser(mWifiStatsParser, WIFI_SECTION_REGEX); in setup()
72 addSectionParser(new NoopParser(), NOOP_SECTION_REGEX); in setup()
DBatteryStatsDetailedInfoParser.java130 addSectionParser(mBatteryUsageParser, BATTERY_USAGE_SECTION_REGEX); in setup()
131 addSectionParser(mWakelockParser, KERNEL_WAKELOCK_SECTION_REGEX); in setup()
132 addSectionParser(mWakelockParser, PARTIAL_WAKELOCK_SECTION_REGEX); in setup()
133 addSectionParser(mInterruptParser, INTERRUPT_SECTION_REGEX); in setup()
134 addSectionParser(mProcessUsageParser, PROCESS_USAGE_SECTION_REGEX); in setup()
DDumpsysBatteryStatsParser.java72 addSectionParser(mSummaryParser, SUMMARY_INFO_SECTION_REGEX); in setup()
73 addSectionParser(mDetailedParser, DETAILED_INFO_SECTION_REGEX); in setup()
74 addSectionParser(mDischargeStepsParser, DISCHARGE_STATS_INFO_SECTION_REGEX); in setup()
75 addSectionParser(new NoopParser(), NOOP_SECTION_REGEX); in setup()
DActivityServiceParser.java62 addSectionParser(mLocationParser, LOCATION_SECTION_REGEX); in setup()
63 addSectionParser(new NoopParser(), NOOP_SECTION_REGEX); in setup()
DAbstractSectionParser.java47 protected void addSectionParser(IParser parser, String pattern) { in addSectionParser() method in AbstractSectionParser
/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DAbstractSectionParserTest.java80 mParser.addSectionParser(parser, String.format(linePattern, i)); in testSwitchParsers()