summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Sooraj Sasindran <sasindran@google.com> 2018-05-21 20:56:02 -0700
committer android-build-merger <android-build-merger@google.com> 2018-05-21 20:56:02 -0700
commitef11b3a7bcd02a3d5f4755f28679d385f7ee3896 (patch)
tree2eea17d541be1e9ba0e37251864fc52786558ee7
parent19a61a3b2fda21f7f94b6d844539e0f1a0952b14 (diff)
parent996fe51a15fa3416494dc81cbea8252f72741200 (diff)
Merge "Add non platform services to telephony bugreport" into pi-dev
am: 996fe51a15 Change-Id: Ib1e49dbebe05e92dd1efd5886ab0307165eeff9e
-rw-r--r--cmds/dumpstate/dumpstate.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp
index d93a66eaeb..2b6241566c 100644
--- a/cmds/dumpstate/dumpstate.cpp
+++ b/cmds/dumpstate/dumpstate.cpp
@@ -1429,6 +1429,7 @@ static void DumpstateRadioCommon() {
// This method collects dumpsys for telephony debugging only
static void DumpstateTelephonyOnly() {
DurationReporter duration_reporter("DUMPSTATE");
+ const CommandOptions DUMPSYS_COMPONENTS_OPTIONS = CommandOptions::WithTimeout(60).Build();
DumpstateRadioCommon();
@@ -1454,6 +1455,13 @@ static void DumpstateTelephonyOnly() {
RunDumpsys("TELEPHONY SERVICES", {"activity", "service", "TelephonyDebugService"});
printf("========================================================\n");
+ printf("== Running Application Services (non-platform)\n");
+ printf("========================================================\n");
+
+ RunDumpsys("APP SERVICES NON-PLATFORM", {"activity", "service", "all-non-platform"},
+ DUMPSYS_COMPONENTS_OPTIONS);
+
+ printf("========================================================\n");
printf("== dumpstate: done (id %d)\n", ds.id_);
printf("========================================================\n");
}