merge from open-source master
Change-Id: I1901177e8a4bd32a707020c581f25f21349ba571
This commit is contained in:
@@ -94,7 +94,8 @@ public final class Debug
|
||||
/**
|
||||
* Default trace file path and file
|
||||
*/
|
||||
private static final String DEFAULT_TRACE_PATH_PREFIX = "/sdcard/";
|
||||
private static final String DEFAULT_TRACE_PATH_PREFIX =
|
||||
Environment.getExternalStorageDirectory().getPath() + "/";
|
||||
private static final String DEFAULT_TRACE_BODY = "dmtrace";
|
||||
private static final String DEFAULT_TRACE_EXTENSION = ".trace";
|
||||
private static final String DEFAULT_TRACE_FILE_PATH =
|
||||
@@ -127,7 +128,7 @@ public final class Debug
|
||||
public int otherPrivateDirty;
|
||||
/** The shared dirty pages used by everything else. */
|
||||
public int otherSharedDirty;
|
||||
|
||||
|
||||
public MemoryInfo() {
|
||||
}
|
||||
|
||||
@@ -137,21 +138,21 @@ public final class Debug
|
||||
public int getTotalPss() {
|
||||
return dalvikPss + nativePss + otherPss;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return total private dirty memory usage in kB.
|
||||
*/
|
||||
public int getTotalPrivateDirty() {
|
||||
return dalvikPrivateDirty + nativePrivateDirty + otherPrivateDirty;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return total shared dirty memory usage in kB.
|
||||
*/
|
||||
public int getTotalSharedDirty() {
|
||||
return dalvikSharedDirty + nativeSharedDirty + otherSharedDirty;
|
||||
}
|
||||
|
||||
|
||||
public int describeContents() {
|
||||
return 0;
|
||||
}
|
||||
@@ -179,7 +180,7 @@ public final class Debug
|
||||
otherPrivateDirty = source.readInt();
|
||||
otherSharedDirty = source.readInt();
|
||||
}
|
||||
|
||||
|
||||
public static final Creator<MemoryInfo> CREATOR = new Creator<MemoryInfo>() {
|
||||
public MemoryInfo createFromParcel(Parcel source) {
|
||||
return new MemoryInfo(source);
|
||||
@@ -460,7 +461,7 @@ href="{@docRoot}guide/developing/tools/traceview.html">Traceview: A Graphical Lo
|
||||
* Like startMethodTracing(String, int, int), but taking an already-opened
|
||||
* FileDescriptor in which the trace is written. The file name is also
|
||||
* supplied simply for logging. Makes a dup of the file descriptor.
|
||||
*
|
||||
*
|
||||
* Not exposed in the SDK unless we are really comfortable with supporting
|
||||
* this and find it would be useful.
|
||||
* @hide
|
||||
@@ -1070,7 +1071,7 @@ href="{@docRoot}guide/developing/tools/traceview.html">Traceview: A Graphical Lo
|
||||
* static {
|
||||
* // Sets all the fields
|
||||
* Debug.setFieldsOn(MyDebugVars.class);
|
||||
*
|
||||
*
|
||||
* // Sets only the fields annotated with @Debug.DebugProperty
|
||||
* // Debug.setFieldsOn(MyDebugVars.class, true);
|
||||
* }
|
||||
|
||||
@@ -25,6 +25,7 @@ import android.content.Intent;
|
||||
import android.database.Cursor;
|
||||
import android.database.sqlite.SqliteWrapper;
|
||||
import android.net.Uri;
|
||||
import android.os.Environment;
|
||||
import android.telephony.SmsMessage;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Config;
|
||||
@@ -1526,7 +1527,8 @@ public final class Telephony {
|
||||
* which streams the captured image to the uri. Internally we write the media content
|
||||
* to this file. It's named '.temp.jpg' so Gallery won't pick it up.
|
||||
*/
|
||||
public static final String SCRAP_FILE_PATH = "/sdcard/mms/scrapSpace/.temp.jpg";
|
||||
public static final String SCRAP_FILE_PATH =
|
||||
Environment.getExternalStorageDirectory().getPath() + "/mms/scrapSpace/.temp.jpg";
|
||||
}
|
||||
|
||||
public static final class Intents {
|
||||
|
||||
@@ -85,7 +85,8 @@ public class SamplingProfilerIntegration {
|
||||
pending = true;
|
||||
snapshotWriter.execute(new Runnable() {
|
||||
public void run() {
|
||||
String dir = "/sdcard/snapshots";
|
||||
String dir =
|
||||
Environment.getExternalStorageDirectory().getPath() + "/snapshots";
|
||||
if (!dirMade) {
|
||||
new File(dir).mkdirs();
|
||||
if (new File(dir).isDirectory()) {
|
||||
|
||||
Reference in New Issue
Block a user