summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
authorkmccormick <kmccormick@google.com>2013-03-29 16:13:12 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-03-29 16:13:12 -0700
commit9f0ed0ee508b8f2233c8834f067e2fb8275d2cfa (patch)
treec0187d25defdb29e5784e042cfb33a84d8c04836 /core/java
parent90fa2ae28c200e0269f86f7d4e486ce781763a99 (diff)
parent58db95970c9ba47dd83e06cc165d2dc5cc29ce8a (diff)
downloadframeworks_base-9f0ed0ee508b8f2233c8834f067e2fb8275d2cfa.zip
frameworks_base-9f0ed0ee508b8f2233c8834f067e2fb8275d2cfa.tar.gz
frameworks_base-9f0ed0ee508b8f2233c8834f067e2fb8275d2cfa.tar.bz2
am 58db9597: am e4ca0650: am 31ed1722: Merge "Doc update: clarify dumpsys instructions" into jb-mr1.1-docs
* commit '58db95970c9ba47dd83e06cc165d2dc5cc29ce8a': Doc update: clarify dumpsys instructions
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/app/Service.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/java/android/app/Service.java b/core/java/android/app/Service.java
index 02cf3aa..4fbca73 100644
--- a/core/java/android/app/Service.java
+++ b/core/java/android/app/Service.java
@@ -666,7 +666,9 @@ public abstract class Service extends ContextWrapper implements ComponentCallbac
/**
* Print the Service's state into the given stream. This gets invoked if
- * you run "adb shell dumpsys activity service &lt;yourservicename&gt;".
+ * you run "adb shell dumpsys activity service &lt;yourservicename&gt;"
+ * (note that for this command to work, the service must be running, and
+ * you must specify a fully-qualified service name).
* This is distinct from "dumpsys &lt;servicename&gt;", which only works for
* named system services and which invokes the {@link IBinder#dump} method
* on the {@link IBinder} interface registered with ServiceManager.