summaryrefslogtreecommitdiffstats
path: root/core/java/android/os/Debug.java
diff options
context:
space:
mode:
authorJeff Hao <jeffhao@google.com>2013-08-30 22:17:12 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-08-30 22:17:12 +0000
commit6110d16b8dd08d276902d2c6d8e90562a3d3694d (patch)
treef1c2cb4422e9124cfbee80c8c5d162192133bc2f /core/java/android/os/Debug.java
parent39e885dc821fbfade43423fae712f82b1df08467 (diff)
parent6f0a04f5d2fbd9507bcb1b4e766623d444503ae5 (diff)
downloadframeworks_base-6110d16b8dd08d276902d2c6d8e90562a3d3694d.zip
frameworks_base-6110d16b8dd08d276902d2c6d8e90562a3d3694d.tar.gz
frameworks_base-6110d16b8dd08d276902d2c6d8e90562a3d3694d.tar.bz2
Merge "Change IsMethodTracingActive to GetMethodTracingMode for frameworks."
Diffstat (limited to 'core/java/android/os/Debug.java')
-rw-r--r--core/java/android/os/Debug.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/java/android/os/Debug.java b/core/java/android/os/Debug.java
index 5de1272..989bd2c 100644
--- a/core/java/android/os/Debug.java
+++ b/core/java/android/os/Debug.java
@@ -524,11 +524,13 @@ href="{@docRoot}guide/developing/tools/traceview.html">Traceview: A Graphical Lo
}
/**
- * Determine whether method tracing is currently active.
+ * Determine whether method tracing is currently active and what type is
+ * active.
+ *
* @hide
*/
- public static boolean isMethodTracingActive() {
- return VMDebug.isMethodTracingActive();
+ public static int getMethodTracingMode() {
+ return VMDebug.getMethodTracingMode();
}
/**