├── .gitattributes ├── .github └── workflows │ └── gradle.yml ├── .gitignore ├── README.md ├── android ├── .classpath ├── .project ├── AndroidManifest.xml ├── assets ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_status.xml │ └── values │ │ └── strings.xml ├── resource.properties └── src │ └── com │ └── sonyericsson │ └── chkbugreport │ ├── AnalyzeTask.java │ ├── AndroidContext.java │ ├── ImageCanvas.java │ ├── LogViewer.java │ ├── PlatformUtil.java │ └── android │ ├── AnalyzerService.java │ ├── BugReportAdapter.java │ ├── BugReportSource.java │ ├── ChkBugReportApp.java │ ├── MainActivity.java │ ├── StatusActivity.java │ ├── TakeBugreportService.java │ └── TakeBugreportTask.java ├── core ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── libraries │ │ └── libs.xml │ ├── misc.xml │ ├── runConfigurations │ │ ├── Checkbugreport_on_file.xml │ │ └── Run_All_Unit_Tests.xml │ ├── uiDesigner.xml │ └── vcs.xml ├── COPYING ├── NOTICE.txt ├── README.md ├── ROADMAP ├── USAGE ├── build.gradle ├── chkbugreport-wrapper ├── gfx │ └── icons.xcf ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── res │ ├── app_icon.png │ ├── appactivities.js │ ├── colResizable-1.3.source.js │ ├── favicon.ico │ ├── ftrace-legend-black.png │ ├── ftrace-legend-cyan.png │ ├── ftrace-legend-dcyan.png │ ├── ftrace-legend-dred.png │ ├── ftrace-legend-red.png │ ├── ftrace-legend-yellow.png │ ├── ic_dynamic.png │ ├── ic_help.png │ ├── ic_new_window.png │ ├── ic_pop_out.png │ ├── icons.png │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── javadoc.css │ ├── jquery.colorhelpers.js │ ├── jquery.cookie.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.image.js │ ├── jquery.flot.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.threshold.js │ ├── jquery.hotkeys.js │ ├── jquery.js │ ├── jquery.jstree.js │ ├── jquery.tablednd.js │ ├── jquery.tablesorter.js │ ├── jquery.treeTable.css │ ├── jquery.treeTable.js │ ├── jquery.ui.css │ ├── jquery.ui.js │ ├── lib_chart.js │ ├── lib_log.js │ ├── main.js │ ├── pcy_bg.png │ ├── pcy_fg.png │ ├── pcy_p0.png │ ├── pcy_p1.png │ ├── pcy_p2.png │ ├── pcy_p3.png │ ├── pcy_p4.png │ ├── pcy_rt.png │ ├── pcy_un.png │ ├── style.css │ ├── themes │ │ ├── blue │ │ │ ├── asc.gif │ │ │ ├── bg.gif │ │ │ ├── desc.gif │ │ │ └── style.css │ │ └── classic │ │ │ ├── d.png │ │ │ ├── dot_for_ie.gif │ │ │ ├── style.css │ │ │ └── throbber.gif │ ├── toggle-collapse-dark.png │ ├── toggle-collapse-light.png │ ├── toggle-expand-dark.png │ ├── toggle-expand-light.png │ ├── warning.png │ └── ws.js ├── settings.gradle ├── src-pc │ └── com │ │ └── sonyericsson │ │ └── chkbugreport │ │ ├── AdbExtension.java │ │ ├── AsyncTask.java │ │ ├── Gui.java │ │ ├── ImageCanvas.java │ │ ├── Main.java │ │ ├── PlatformUtil.java │ │ └── util │ │ └── ClassCompiler.java ├── src │ ├── com │ │ └── sonyericsson │ │ │ └── chkbugreport │ │ │ ├── AndroidVersions.java │ │ │ ├── BugReportModule.java │ │ │ ├── Context.java │ │ │ ├── ExternalPlugin.java │ │ │ ├── GuessedValue.java │ │ │ ├── IllegalParameterException.java │ │ │ ├── LabeledEdge.java │ │ │ ├── Lines.java │ │ │ ├── Module.java │ │ │ ├── OutputListener.java │ │ │ ├── Plugin.java │ │ │ ├── ProcessRecord.java │ │ │ ├── Section.java │ │ │ ├── SectionInputStream.java │ │ │ ├── ThreadsDependencyGraph.java │ │ │ ├── TimeWindowMarker.java │ │ │ ├── chart │ │ │ ├── Axis.java │ │ │ ├── ChartGenerator.java │ │ │ ├── ChartPlugin.java │ │ │ ├── ChartPluginInfo.java │ │ │ ├── ChartPluginRepo.java │ │ │ ├── Data.java │ │ │ ├── DataSet.java │ │ │ ├── DataSetInfo.java │ │ │ ├── FlotGenerator.java │ │ │ ├── LogFilter.java │ │ │ ├── LogFilterChartPlugin.java │ │ │ └── Marker.java │ │ │ ├── doc │ │ │ ├── Accordion.java │ │ │ ├── Anchor.java │ │ │ ├── Block.java │ │ │ ├── Bold.java │ │ │ ├── Bug.java │ │ │ ├── Button.java │ │ │ ├── Chapter.java │ │ │ ├── ChapterHelp.java │ │ │ ├── ChapterParent.java │ │ │ ├── Doc.java │ │ │ ├── DocNode.java │ │ │ ├── FileRenderer.java │ │ │ ├── Header.java │ │ │ ├── Hint.java │ │ │ ├── HtmlNode.java │ │ │ ├── Icon.java │ │ │ ├── Img.java │ │ │ ├── InternalRef.java │ │ │ ├── Italic.java │ │ │ ├── Link.java │ │ │ ├── List.java │ │ │ ├── MemRenderer.java │ │ │ ├── Para.java │ │ │ ├── PreText.java │ │ │ ├── ProcessLink.java │ │ │ ├── Renderer.java │ │ │ ├── ReportHeader.java │ │ │ ├── Script.java │ │ │ ├── ShadedValue.java │ │ │ ├── SimpleText.java │ │ │ ├── Span.java │ │ │ ├── Strike.java │ │ │ ├── Table.java │ │ │ ├── ThresholdedValue.java │ │ │ ├── TreeView.java │ │ │ └── WebOnlyChapter.java │ │ │ ├── package.html │ │ │ ├── plugins │ │ │ ├── AlarmManagerPlugin.java │ │ │ ├── CpuFreqPlugin.java │ │ │ ├── MemPlugin.java │ │ │ ├── MiscPlugin.java │ │ │ ├── PSTreePlugin.java │ │ │ ├── PackageInfoPlugin.java │ │ │ ├── ScreenShotPlugin.java │ │ │ ├── SummaryPlugin.java │ │ │ ├── SurfaceFlingerPlugin.java │ │ │ ├── SysPropsPlugin.java │ │ │ ├── UsageHistoryPlugin.java │ │ │ ├── WindowManagerPlugin.java │ │ │ ├── apps │ │ │ │ ├── Activity.java │ │ │ │ ├── AppActivitiesPlugin.java │ │ │ │ ├── Task.java │ │ │ │ ├── View.java │ │ │ │ └── ViewHierarchyGenerator.java │ │ │ ├── battery │ │ │ │ ├── BatteryInfoPlugin.java │ │ │ │ ├── BatteryLevelChart.java │ │ │ │ ├── BatteryLevelGenerator.java │ │ │ │ ├── ConnectivityChangePlugin.java │ │ │ │ ├── DeepSleepPlugin.java │ │ │ │ ├── Hooks.java │ │ │ │ ├── KernelWakeSourcesPlugin.java │ │ │ │ ├── NetstatSamplePlugin.java │ │ │ │ ├── ScreenOnPlugin.java │ │ │ │ ├── WakeLock.java │ │ │ │ ├── WakelocksFromLogPlugin.java │ │ │ │ └── WakelocksPlugin.java │ │ │ ├── charteditor │ │ │ │ ├── ChartData.java │ │ │ │ ├── ChartEditorPlugin.java │ │ │ │ └── Charts.java │ │ │ ├── extxml │ │ │ │ ├── ExtXMLPlugin.java │ │ │ │ ├── Log.java │ │ │ │ └── LogChart.java │ │ │ ├── ftrace │ │ │ │ ├── Const.java │ │ │ │ ├── FTraceData.java │ │ │ │ ├── FTracePlugin.java │ │ │ │ ├── FTraceProcessRecord.java │ │ │ │ ├── FTraceProcessRecordComparator.java │ │ │ │ ├── NewParser.java │ │ │ │ ├── OldParser.java │ │ │ │ ├── Parser.java │ │ │ │ ├── TraceRecord.java │ │ │ │ └── VCDGenerator.java │ │ │ ├── logs │ │ │ │ ├── ConfigChange.java │ │ │ │ ├── ConnectivityLog.java │ │ │ │ ├── ConnectivityLogs.java │ │ │ │ ├── Decorator.java │ │ │ │ ├── GCRecord.java │ │ │ │ ├── GCRecords.java │ │ │ │ ├── Hooks.java │ │ │ │ ├── LogData.java │ │ │ │ ├── LogLine.java │ │ │ │ ├── LogLines.java │ │ │ │ ├── LogMatcher.java │ │ │ │ ├── LogPlugin.java │ │ │ │ ├── LogToolbar.java │ │ │ │ ├── MainLogPlugin.java │ │ │ │ ├── PidDecorator.java │ │ │ │ ├── ProcessLog.java │ │ │ │ ├── SystemLogPlugin.java │ │ │ │ ├── event │ │ │ │ │ ├── ALTStat.java │ │ │ │ │ ├── AMChart.java │ │ │ │ │ ├── AMData.java │ │ │ │ │ ├── ActivityManagerGraphGenerator.java │ │ │ │ │ ├── ActivityManagerProcStatsGenerator.java │ │ │ │ │ ├── ActivityManagerStatsGenerator.java │ │ │ │ │ ├── ActivityManagerTrace.java │ │ │ │ │ ├── BatteryLevel.java │ │ │ │ │ ├── BatteryLevels.java │ │ │ │ │ ├── ComponentStat.java │ │ │ │ │ ├── DBStat.java │ │ │ │ │ ├── EventLogPlugin.java │ │ │ │ │ ├── NetstatSample.java │ │ │ │ │ ├── NetstatSamples.java │ │ │ │ │ ├── ProcStat.java │ │ │ │ │ ├── SampleData.java │ │ │ │ │ ├── SampleDatas.java │ │ │ │ │ ├── SampleDatasGenerator.java │ │ │ │ │ └── SampleEvent.java │ │ │ │ ├── kernel │ │ │ │ │ ├── DeepSleep.java │ │ │ │ │ ├── DeepSleepDetector.java │ │ │ │ │ ├── DeepSleeps.java │ │ │ │ │ ├── KernelLogData.java │ │ │ │ │ ├── KernelLogPlugin.java │ │ │ │ │ ├── LogDataFromSL.java │ │ │ │ │ ├── PMStats.java │ │ │ │ │ ├── SuspendAttempt.java │ │ │ │ │ ├── SuspendBlockerStat.java │ │ │ │ │ └── iptables │ │ │ │ │ │ ├── ConnectionGrouping.java │ │ │ │ │ │ ├── IPTableLogAnalyzer.java │ │ │ │ │ │ ├── IPUtils.java │ │ │ │ │ │ ├── Packet.java │ │ │ │ │ │ ├── PacketGraph.java │ │ │ │ │ │ ├── ResendStats.java │ │ │ │ │ │ └── SimpleStats.java │ │ │ │ └── webapp │ │ │ │ │ ├── Comment.java │ │ │ │ │ ├── Comments.java │ │ │ │ │ ├── Filter.java │ │ │ │ │ ├── FilterGroup.java │ │ │ │ │ ├── Filters.java │ │ │ │ │ └── LogWebApp.java │ │ │ └── stacktrace │ │ │ │ ├── Analyzer.java │ │ │ │ ├── BinderAnalyzer.java │ │ │ │ ├── DBImporter.java │ │ │ │ ├── Generator.java │ │ │ │ ├── Process.java │ │ │ │ ├── Processes.java │ │ │ │ ├── StackTrace.java │ │ │ │ ├── StackTraceItem.java │ │ │ │ ├── StackTracePlugin.java │ │ │ │ └── StackTraceScanner.java │ │ │ ├── ps │ │ │ ├── PSRecord.java │ │ │ ├── PSRecords.java │ │ │ └── PSScanner.java │ │ │ ├── settings │ │ │ ├── BoolSetting.java │ │ │ ├── Setting.java │ │ │ └── Settings.java │ │ │ ├── traceview │ │ │ ├── MainLoopPlugin.java │ │ │ ├── StatsPlugin.java │ │ │ ├── StreamUtil.java │ │ │ ├── TraceModule.java │ │ │ ├── TreePNGPlugin.java │ │ │ └── TreeViewPlugin.java │ │ │ ├── util │ │ │ ├── ColorUtil.java │ │ │ ├── DumpTree.java │ │ │ ├── HtmlUtil.java │ │ │ ├── LineReader.java │ │ │ ├── PrioHashMap.java │ │ │ ├── Rect.java │ │ │ ├── SaveFile.java │ │ │ ├── SavedData.java │ │ │ ├── SavedField.java │ │ │ ├── Util.java │ │ │ └── XMLNode.java │ │ │ └── webserver │ │ │ ├── ChkBugReportWebServer.java │ │ │ ├── JSON.java │ │ │ ├── Web.java │ │ │ └── engine │ │ │ ├── BufferedReader.java │ │ │ ├── HTTPRenderer.java │ │ │ ├── HTTPRequest.java │ │ │ ├── HTTPResponse.java │ │ │ ├── Util.java │ │ │ ├── WebApp.java │ │ │ ├── WebServer.java │ │ │ └── WebServerSocket.java │ ├── overview.html │ └── test │ │ └── resources │ │ └── mockito-extensions │ │ └── org.mockito.plugins.MockMaker └── test │ ├── BatteryPluginHistoryTest.java │ ├── BatteryPluginWakelockTest.java │ ├── BugReportModuleTest.java │ ├── MemPluginLibRankTest.java │ ├── MemPluginMemInfoTest.java │ ├── MemPluginProcRankTest.java │ ├── PSScannerTest.java │ ├── StackTraceScannerTest.java │ ├── SysPropsPluginTest.java │ ├── TestSection.java │ ├── UtilTest.java │ ├── WakeLockTest.java │ └── WindowManagerPluginTest.java └── examples ├── bugreports ├── bugreport-sailfish-QP1A.191005.007.A3-2020-01-08-15-30-07.zip ├── bugreport_aidldeadlock.txt ├── bugreport_deadlock.txt └── bugreport_hybriddeadlock.txt └── testapp ├── .classpath ├── .project ├── AndroidManifest.xml ├── gen └── com │ └── sonymobile │ └── chkbugreport │ └── testapp │ ├── IDeadlock.java │ └── R.java ├── proguard.cfg ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── layout │ └── main.xml └── values │ └── strings.xml ├── resource.properties └── src └── com └── sonymobile └── chkbugreport └── testapp ├── AIDLDeadlock.java ├── AIDLDeadlockService.java ├── Deadlock.java ├── DeadlockWithWait.java ├── HybridDeadlock.java ├── HybridDeadlockService.java ├── IDeadlock.aidl └── MainActivity.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | data 3 | chkbugreport*.jar 4 | gen 5 | /doc 6 | .DS_Store 7 | core/build 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/README.md -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/.project -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/assets: -------------------------------------------------------------------------------- 1 | ../core/res -------------------------------------------------------------------------------- /android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/proguard-project.txt -------------------------------------------------------------------------------- /android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/project.properties -------------------------------------------------------------------------------- /android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/layout/activity_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/res/layout/activity_status.xml -------------------------------------------------------------------------------- /android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/res/values/strings.xml -------------------------------------------------------------------------------- /android/resource.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/resource.properties -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/AnalyzeTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/AnalyzeTask.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/AndroidContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/AndroidContext.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/ImageCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/ImageCanvas.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/LogViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/LogViewer.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/PlatformUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/PlatformUtil.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/android/AnalyzerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/android/AnalyzerService.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/android/BugReportAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/android/BugReportAdapter.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/android/BugReportSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/android/BugReportSource.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/android/ChkBugReportApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/android/ChkBugReportApp.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/android/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/android/MainActivity.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/android/StatusActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/android/StatusActivity.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/android/TakeBugreportService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/android/TakeBugreportService.java -------------------------------------------------------------------------------- /android/src/com/sonyericsson/chkbugreport/android/TakeBugreportTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/android/src/com/sonyericsson/chkbugreport/android/TakeBugreportTask.java -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.gitignore -------------------------------------------------------------------------------- /core/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /core/.idea/.name: -------------------------------------------------------------------------------- 1 | ChkBugReport -------------------------------------------------------------------------------- /core/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.idea/gradle.xml -------------------------------------------------------------------------------- /core/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /core/.idea/libraries/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.idea/libraries/libs.xml -------------------------------------------------------------------------------- /core/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.idea/misc.xml -------------------------------------------------------------------------------- /core/.idea/runConfigurations/Checkbugreport_on_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.idea/runConfigurations/Checkbugreport_on_file.xml -------------------------------------------------------------------------------- /core/.idea/runConfigurations/Run_All_Unit_Tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.idea/runConfigurations/Run_All_Unit_Tests.xml -------------------------------------------------------------------------------- /core/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /core/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/.idea/vcs.xml -------------------------------------------------------------------------------- /core/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/COPYING -------------------------------------------------------------------------------- /core/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/NOTICE.txt -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/README.md -------------------------------------------------------------------------------- /core/ROADMAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/ROADMAP -------------------------------------------------------------------------------- /core/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/USAGE -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/chkbugreport-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/chkbugreport-wrapper -------------------------------------------------------------------------------- /core/gfx/icons.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/gfx/icons.xcf -------------------------------------------------------------------------------- /core/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /core/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /core/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/gradlew -------------------------------------------------------------------------------- /core/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/gradlew.bat -------------------------------------------------------------------------------- /core/res/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/app_icon.png -------------------------------------------------------------------------------- /core/res/appactivities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/appactivities.js -------------------------------------------------------------------------------- /core/res/colResizable-1.3.source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/colResizable-1.3.source.js -------------------------------------------------------------------------------- /core/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/favicon.ico -------------------------------------------------------------------------------- /core/res/ftrace-legend-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ftrace-legend-black.png -------------------------------------------------------------------------------- /core/res/ftrace-legend-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ftrace-legend-cyan.png -------------------------------------------------------------------------------- /core/res/ftrace-legend-dcyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ftrace-legend-dcyan.png -------------------------------------------------------------------------------- /core/res/ftrace-legend-dred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ftrace-legend-dred.png -------------------------------------------------------------------------------- /core/res/ftrace-legend-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ftrace-legend-red.png -------------------------------------------------------------------------------- /core/res/ftrace-legend-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ftrace-legend-yellow.png -------------------------------------------------------------------------------- /core/res/ic_dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ic_dynamic.png -------------------------------------------------------------------------------- /core/res/ic_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ic_help.png -------------------------------------------------------------------------------- /core/res/ic_new_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ic_new_window.png -------------------------------------------------------------------------------- /core/res/ic_pop_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ic_pop_out.png -------------------------------------------------------------------------------- /core/res/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/icons.png -------------------------------------------------------------------------------- /core/res/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /core/res/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /core/res/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /core/res/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /core/res/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /core/res/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /core/res/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /core/res/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /core/res/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /core/res/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /core/res/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /core/res/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /core/res/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /core/res/javadoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/javadoc.css -------------------------------------------------------------------------------- /core/res/jquery.colorhelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.colorhelpers.js -------------------------------------------------------------------------------- /core/res/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.cookie.js -------------------------------------------------------------------------------- /core/res/jquery.flot.crosshair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.crosshair.js -------------------------------------------------------------------------------- /core/res/jquery.flot.fillbetween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.fillbetween.js -------------------------------------------------------------------------------- /core/res/jquery.flot.image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.image.js -------------------------------------------------------------------------------- /core/res/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.js -------------------------------------------------------------------------------- /core/res/jquery.flot.navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.navigate.js -------------------------------------------------------------------------------- /core/res/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.pie.js -------------------------------------------------------------------------------- /core/res/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.resize.js -------------------------------------------------------------------------------- /core/res/jquery.flot.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.selection.js -------------------------------------------------------------------------------- /core/res/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.stack.js -------------------------------------------------------------------------------- /core/res/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.symbol.js -------------------------------------------------------------------------------- /core/res/jquery.flot.threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.flot.threshold.js -------------------------------------------------------------------------------- /core/res/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.hotkeys.js -------------------------------------------------------------------------------- /core/res/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.js -------------------------------------------------------------------------------- /core/res/jquery.jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.jstree.js -------------------------------------------------------------------------------- /core/res/jquery.tablednd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.tablednd.js -------------------------------------------------------------------------------- /core/res/jquery.tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.tablesorter.js -------------------------------------------------------------------------------- /core/res/jquery.treeTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.treeTable.css -------------------------------------------------------------------------------- /core/res/jquery.treeTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.treeTable.js -------------------------------------------------------------------------------- /core/res/jquery.ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.ui.css -------------------------------------------------------------------------------- /core/res/jquery.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/jquery.ui.js -------------------------------------------------------------------------------- /core/res/lib_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/lib_chart.js -------------------------------------------------------------------------------- /core/res/lib_log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/lib_log.js -------------------------------------------------------------------------------- /core/res/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/main.js -------------------------------------------------------------------------------- /core/res/pcy_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_bg.png -------------------------------------------------------------------------------- /core/res/pcy_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_fg.png -------------------------------------------------------------------------------- /core/res/pcy_p0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_p0.png -------------------------------------------------------------------------------- /core/res/pcy_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_p1.png -------------------------------------------------------------------------------- /core/res/pcy_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_p2.png -------------------------------------------------------------------------------- /core/res/pcy_p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_p3.png -------------------------------------------------------------------------------- /core/res/pcy_p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_p4.png -------------------------------------------------------------------------------- /core/res/pcy_rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_rt.png -------------------------------------------------------------------------------- /core/res/pcy_un.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/pcy_un.png -------------------------------------------------------------------------------- /core/res/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/style.css -------------------------------------------------------------------------------- /core/res/themes/blue/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/themes/blue/asc.gif -------------------------------------------------------------------------------- /core/res/themes/blue/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/themes/blue/bg.gif -------------------------------------------------------------------------------- /core/res/themes/blue/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/themes/blue/desc.gif -------------------------------------------------------------------------------- /core/res/themes/blue/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/themes/blue/style.css -------------------------------------------------------------------------------- /core/res/themes/classic/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/themes/classic/d.png -------------------------------------------------------------------------------- /core/res/themes/classic/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/themes/classic/dot_for_ie.gif -------------------------------------------------------------------------------- /core/res/themes/classic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/themes/classic/style.css -------------------------------------------------------------------------------- /core/res/themes/classic/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/themes/classic/throbber.gif -------------------------------------------------------------------------------- /core/res/toggle-collapse-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/toggle-collapse-dark.png -------------------------------------------------------------------------------- /core/res/toggle-collapse-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/toggle-collapse-light.png -------------------------------------------------------------------------------- /core/res/toggle-expand-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/toggle-expand-dark.png -------------------------------------------------------------------------------- /core/res/toggle-expand-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/toggle-expand-light.png -------------------------------------------------------------------------------- /core/res/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/warning.png -------------------------------------------------------------------------------- /core/res/ws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/res/ws.js -------------------------------------------------------------------------------- /core/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/settings.gradle -------------------------------------------------------------------------------- /core/src-pc/com/sonyericsson/chkbugreport/AdbExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src-pc/com/sonyericsson/chkbugreport/AdbExtension.java -------------------------------------------------------------------------------- /core/src-pc/com/sonyericsson/chkbugreport/AsyncTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src-pc/com/sonyericsson/chkbugreport/AsyncTask.java -------------------------------------------------------------------------------- /core/src-pc/com/sonyericsson/chkbugreport/Gui.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src-pc/com/sonyericsson/chkbugreport/Gui.java -------------------------------------------------------------------------------- /core/src-pc/com/sonyericsson/chkbugreport/ImageCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src-pc/com/sonyericsson/chkbugreport/ImageCanvas.java -------------------------------------------------------------------------------- /core/src-pc/com/sonyericsson/chkbugreport/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src-pc/com/sonyericsson/chkbugreport/Main.java -------------------------------------------------------------------------------- /core/src-pc/com/sonyericsson/chkbugreport/PlatformUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src-pc/com/sonyericsson/chkbugreport/PlatformUtil.java -------------------------------------------------------------------------------- /core/src-pc/com/sonyericsson/chkbugreport/util/ClassCompiler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src-pc/com/sonyericsson/chkbugreport/util/ClassCompiler.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/AndroidVersions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/AndroidVersions.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/BugReportModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/BugReportModule.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/Context.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/Context.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/ExternalPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/ExternalPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/GuessedValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/GuessedValue.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/IllegalParameterException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/IllegalParameterException.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/LabeledEdge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/LabeledEdge.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/Lines.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/Lines.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/Module.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/OutputListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/OutputListener.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/Plugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/Plugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/ProcessRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/ProcessRecord.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/Section.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/Section.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/SectionInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/SectionInputStream.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/ThreadsDependencyGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/ThreadsDependencyGraph.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/TimeWindowMarker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/TimeWindowMarker.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/Axis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/Axis.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/ChartGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/ChartGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/ChartPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/ChartPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/ChartPluginInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/ChartPluginInfo.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/ChartPluginRepo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/ChartPluginRepo.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/Data.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/DataSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/DataSet.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/DataSetInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/DataSetInfo.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/FlotGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/FlotGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/LogFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/LogFilter.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/LogFilterChartPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/LogFilterChartPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/chart/Marker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/chart/Marker.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Accordion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Accordion.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Anchor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Anchor.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Block.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Block.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Bold.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Bold.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Bug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Bug.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Button.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Button.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Chapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Chapter.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/ChapterHelp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/ChapterHelp.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/ChapterParent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/ChapterParent.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Doc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Doc.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/DocNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/DocNode.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/FileRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/FileRenderer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Header.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Hint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Hint.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/HtmlNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/HtmlNode.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Icon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Icon.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Img.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Img.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/InternalRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/InternalRef.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Italic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Italic.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Link.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Link.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/List.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/List.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/MemRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/MemRenderer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Para.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Para.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/PreText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/PreText.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/ProcessLink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/ProcessLink.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Renderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Renderer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/ReportHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/ReportHeader.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Script.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Script.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/ShadedValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/ShadedValue.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/SimpleText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/SimpleText.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Span.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Span.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Strike.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Strike.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/Table.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/Table.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/ThresholdedValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/ThresholdedValue.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/TreeView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/TreeView.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/doc/WebOnlyChapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/doc/WebOnlyChapter.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/package.html -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/AlarmManagerPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/AlarmManagerPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/CpuFreqPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/CpuFreqPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/MemPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/MemPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/MiscPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/MiscPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/PSTreePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/PSTreePlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/PackageInfoPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/PackageInfoPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ScreenShotPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ScreenShotPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/SummaryPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/SummaryPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/SurfaceFlingerPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/SurfaceFlingerPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/SysPropsPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/SysPropsPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/UsageHistoryPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/UsageHistoryPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/WindowManagerPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/WindowManagerPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/apps/Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/apps/Activity.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/apps/AppActivitiesPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/apps/AppActivitiesPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/apps/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/apps/Task.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/apps/View.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/apps/View.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/apps/ViewHierarchyGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/apps/ViewHierarchyGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/BatteryInfoPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/BatteryInfoPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/BatteryLevelChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/BatteryLevelChart.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/BatteryLevelGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/BatteryLevelGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/ConnectivityChangePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/ConnectivityChangePlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/DeepSleepPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/DeepSleepPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/Hooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/Hooks.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/KernelWakeSourcesPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/KernelWakeSourcesPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/NetstatSamplePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/NetstatSamplePlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/ScreenOnPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/ScreenOnPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/WakeLock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/WakeLock.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/WakelocksFromLogPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/WakelocksFromLogPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/battery/WakelocksPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/battery/WakelocksPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/charteditor/ChartData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/charteditor/ChartData.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/charteditor/ChartEditorPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/charteditor/ChartEditorPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/charteditor/Charts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/charteditor/Charts.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/extxml/ExtXMLPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/extxml/ExtXMLPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/extxml/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/extxml/Log.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/extxml/LogChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/extxml/LogChart.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/Const.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/Const.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/FTraceData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/FTraceData.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/FTracePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/FTracePlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/FTraceProcessRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/FTraceProcessRecord.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/FTraceProcessRecordComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/FTraceProcessRecordComparator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/NewParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/NewParser.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/OldParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/OldParser.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/Parser.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/TraceRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/TraceRecord.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/ftrace/VCDGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/ftrace/VCDGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/ConfigChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/ConfigChange.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/ConnectivityLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/ConnectivityLog.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/ConnectivityLogs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/ConnectivityLogs.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/Decorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/Decorator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/GCRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/GCRecord.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/GCRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/GCRecords.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/Hooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/Hooks.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/LogData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/LogData.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/LogLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/LogLine.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/LogLines.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/LogLines.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/LogMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/LogMatcher.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/LogPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/LogPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/LogToolbar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/LogToolbar.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/MainLogPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/MainLogPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/PidDecorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/PidDecorator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/ProcessLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/ProcessLog.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/SystemLogPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/SystemLogPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ALTStat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ALTStat.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/AMChart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/AMChart.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/AMData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/AMData.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ActivityManagerGraphGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ActivityManagerGraphGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ActivityManagerProcStatsGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ActivityManagerProcStatsGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ActivityManagerStatsGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ActivityManagerStatsGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ActivityManagerTrace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ActivityManagerTrace.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/BatteryLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/BatteryLevel.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/BatteryLevels.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/BatteryLevels.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ComponentStat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ComponentStat.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/DBStat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/DBStat.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/EventLogPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/EventLogPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/NetstatSample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/NetstatSample.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/NetstatSamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/NetstatSamples.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ProcStat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/ProcStat.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/SampleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/SampleData.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/SampleDatas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/SampleDatas.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/SampleDatasGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/SampleDatasGenerator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/event/SampleEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/event/SampleEvent.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/DeepSleep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/DeepSleep.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/DeepSleepDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/DeepSleepDetector.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/DeepSleeps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/DeepSleeps.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/KernelLogData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/KernelLogData.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/KernelLogPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/KernelLogPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/LogDataFromSL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/LogDataFromSL.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/PMStats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/PMStats.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/SuspendAttempt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/SuspendAttempt.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/SuspendBlockerStat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/SuspendBlockerStat.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/ConnectionGrouping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/ConnectionGrouping.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/IPTableLogAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/IPTableLogAnalyzer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/IPUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/IPUtils.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/Packet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/Packet.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/PacketGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/PacketGraph.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/ResendStats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/ResendStats.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/SimpleStats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/kernel/iptables/SimpleStats.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/Comment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/Comment.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/Comments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/Comments.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/Filter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/Filter.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/FilterGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/FilterGroup.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/Filters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/Filters.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/LogWebApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/logs/webapp/LogWebApp.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/Analyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/Analyzer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/BinderAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/BinderAnalyzer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/DBImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/DBImporter.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/Generator.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/Process.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/Process.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/Processes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/Processes.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/StackTrace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/StackTrace.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/StackTraceItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/StackTraceItem.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/StackTracePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/StackTracePlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/StackTraceScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/plugins/stacktrace/StackTraceScanner.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/ps/PSRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/ps/PSRecord.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/ps/PSRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/ps/PSRecords.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/ps/PSScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/ps/PSScanner.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/settings/BoolSetting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/settings/BoolSetting.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/settings/Setting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/settings/Setting.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/settings/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/settings/Settings.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/traceview/MainLoopPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/traceview/MainLoopPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/traceview/StatsPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/traceview/StatsPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/traceview/StreamUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/traceview/StreamUtil.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/traceview/TraceModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/traceview/TraceModule.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/traceview/TreePNGPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/traceview/TreePNGPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/traceview/TreeViewPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/traceview/TreeViewPlugin.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/ColorUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/ColorUtil.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/DumpTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/DumpTree.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/HtmlUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/HtmlUtil.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/LineReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/LineReader.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/PrioHashMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/PrioHashMap.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/Rect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/Rect.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/SaveFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/SaveFile.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/SavedData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/SavedData.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/SavedField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/SavedField.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/Util.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/util/XMLNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/util/XMLNode.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/ChkBugReportWebServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/ChkBugReportWebServer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/JSON.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/JSON.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/Web.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/Web.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/engine/BufferedReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/engine/BufferedReader.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/engine/HTTPRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/engine/HTTPRenderer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/engine/HTTPRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/engine/HTTPRequest.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/engine/HTTPResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/engine/HTTPResponse.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/engine/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/engine/Util.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/engine/WebApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/engine/WebApp.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/engine/WebServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/engine/WebServer.java -------------------------------------------------------------------------------- /core/src/com/sonyericsson/chkbugreport/webserver/engine/WebServerSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/com/sonyericsson/chkbugreport/webserver/engine/WebServerSocket.java -------------------------------------------------------------------------------- /core/src/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/src/overview.html -------------------------------------------------------------------------------- /core/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline -------------------------------------------------------------------------------- /core/test/BatteryPluginHistoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/BatteryPluginHistoryTest.java -------------------------------------------------------------------------------- /core/test/BatteryPluginWakelockTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/BatteryPluginWakelockTest.java -------------------------------------------------------------------------------- /core/test/BugReportModuleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/BugReportModuleTest.java -------------------------------------------------------------------------------- /core/test/MemPluginLibRankTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/MemPluginLibRankTest.java -------------------------------------------------------------------------------- /core/test/MemPluginMemInfoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/MemPluginMemInfoTest.java -------------------------------------------------------------------------------- /core/test/MemPluginProcRankTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/MemPluginProcRankTest.java -------------------------------------------------------------------------------- /core/test/PSScannerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/PSScannerTest.java -------------------------------------------------------------------------------- /core/test/StackTraceScannerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/StackTraceScannerTest.java -------------------------------------------------------------------------------- /core/test/SysPropsPluginTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/SysPropsPluginTest.java -------------------------------------------------------------------------------- /core/test/TestSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/TestSection.java -------------------------------------------------------------------------------- /core/test/UtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/UtilTest.java -------------------------------------------------------------------------------- /core/test/WakeLockTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/WakeLockTest.java -------------------------------------------------------------------------------- /core/test/WindowManagerPluginTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/core/test/WindowManagerPluginTest.java -------------------------------------------------------------------------------- /examples/bugreports/bugreport-sailfish-QP1A.191005.007.A3-2020-01-08-15-30-07.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/bugreports/bugreport-sailfish-QP1A.191005.007.A3-2020-01-08-15-30-07.zip -------------------------------------------------------------------------------- /examples/bugreports/bugreport_aidldeadlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/bugreports/bugreport_aidldeadlock.txt -------------------------------------------------------------------------------- /examples/bugreports/bugreport_deadlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/bugreports/bugreport_deadlock.txt -------------------------------------------------------------------------------- /examples/bugreports/bugreport_hybriddeadlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/bugreports/bugreport_hybriddeadlock.txt -------------------------------------------------------------------------------- /examples/testapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/.classpath -------------------------------------------------------------------------------- /examples/testapp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/.project -------------------------------------------------------------------------------- /examples/testapp/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/testapp/gen/com/sonymobile/chkbugreport/testapp/IDeadlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/gen/com/sonymobile/chkbugreport/testapp/IDeadlock.java -------------------------------------------------------------------------------- /examples/testapp/gen/com/sonymobile/chkbugreport/testapp/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/gen/com/sonymobile/chkbugreport/testapp/R.java -------------------------------------------------------------------------------- /examples/testapp/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/proguard.cfg -------------------------------------------------------------------------------- /examples/testapp/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/project.properties -------------------------------------------------------------------------------- /examples/testapp/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/testapp/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/testapp/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/testapp/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/res/layout/main.xml -------------------------------------------------------------------------------- /examples/testapp/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/res/values/strings.xml -------------------------------------------------------------------------------- /examples/testapp/resource.properties: -------------------------------------------------------------------------------- 1 | #Tue May 15 12:52:01 CEST 2012 2 | additional-resource-includes= 3 | -------------------------------------------------------------------------------- /examples/testapp/src/com/sonymobile/chkbugreport/testapp/AIDLDeadlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/src/com/sonymobile/chkbugreport/testapp/AIDLDeadlock.java -------------------------------------------------------------------------------- /examples/testapp/src/com/sonymobile/chkbugreport/testapp/AIDLDeadlockService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/src/com/sonymobile/chkbugreport/testapp/AIDLDeadlockService.java -------------------------------------------------------------------------------- /examples/testapp/src/com/sonymobile/chkbugreport/testapp/Deadlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/src/com/sonymobile/chkbugreport/testapp/Deadlock.java -------------------------------------------------------------------------------- /examples/testapp/src/com/sonymobile/chkbugreport/testapp/DeadlockWithWait.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/src/com/sonymobile/chkbugreport/testapp/DeadlockWithWait.java -------------------------------------------------------------------------------- /examples/testapp/src/com/sonymobile/chkbugreport/testapp/HybridDeadlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/src/com/sonymobile/chkbugreport/testapp/HybridDeadlock.java -------------------------------------------------------------------------------- /examples/testapp/src/com/sonymobile/chkbugreport/testapp/HybridDeadlockService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/src/com/sonymobile/chkbugreport/testapp/HybridDeadlockService.java -------------------------------------------------------------------------------- /examples/testapp/src/com/sonymobile/chkbugreport/testapp/IDeadlock.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/src/com/sonymobile/chkbugreport/testapp/IDeadlock.aidl -------------------------------------------------------------------------------- /examples/testapp/src/com/sonymobile/chkbugreport/testapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonyxperiadev/ChkBugReport/HEAD/examples/testapp/src/com/sonymobile/chkbugreport/testapp/MainActivity.java --------------------------------------------------------------------------------