summaryrefslogtreecommitdiffstats
path: root/core/java/android/database
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/database')
-rw-r--r--core/java/android/database/sqlite/SQLiteDebug.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/database/sqlite/SQLiteDebug.java b/core/java/android/database/sqlite/SQLiteDebug.java
index cc057e0..029bb4a 100644
--- a/core/java/android/database/sqlite/SQLiteDebug.java
+++ b/core/java/android/database/sqlite/SQLiteDebug.java
@@ -21,6 +21,7 @@ import java.util.ArrayList;
import android.os.Build;
import android.os.SystemProperties;
import android.util.Log;
+import android.util.Printer;
/**
* Provides debugging info about all SQLite databases running in the current process.
@@ -181,6 +182,13 @@ public final class SQLiteDebug {
}
/**
+ * Dumps detailed information about all databases used by the process.
+ * @param printer The printer for dumping database state.
+ */
+ public static void dump(Printer printer, String[] args) {
+ }
+
+ /**
* Gathers statistics about all pagers in the current process.
*/
public static native void getPagerStats(PagerStats stats);