Add systemApp field to ApplicationErrorReport

This commit is contained in:
Jacek Surazski
2010-01-07 16:23:03 +01:00
parent 918007b755
commit e0ee6efb1e
2 changed files with 9 additions and 0 deletions

View File

@@ -81,6 +81,11 @@ public class ApplicationErrorReport implements Parcelable {
*/
public long time;
/**
* Set if the app is on the system image.
*/
public boolean systemApp;
/**
* If this report is of type {@link #TYPE_CRASH}, contains an instance
* of CrashInfo describing the crash; otherwise null.
@@ -113,6 +118,7 @@ public class ApplicationErrorReport implements Parcelable {
dest.writeString(installerPackageName);
dest.writeString(processName);
dest.writeLong(time);
dest.writeInt(systemApp ? 1 : 0);
switch (type) {
case TYPE_CRASH:
@@ -130,6 +136,7 @@ public class ApplicationErrorReport implements Parcelable {
installerPackageName = in.readString();
processName = in.readString();
time = in.readLong();
systemApp = in.readInt() == 1;
switch (type) {
case TYPE_CRASH:
@@ -331,6 +338,7 @@ public class ApplicationErrorReport implements Parcelable {
pw.println(prefix + "installerPackageName: " + installerPackageName);
pw.println(prefix + "processName: " + processName);
pw.println(prefix + "time: " + time);
pw.println(prefix + "systemApp: " + systemApp);
switch (type) {
case TYPE_CRASH:

View File

@@ -8994,6 +8994,7 @@ public final class ActivityManagerService extends ActivityManagerNative implemen
report.installerPackageName = r.errorReportReceiver.getPackageName();
report.processName = r.processName;
report.time = timeMillis;
report.systemApp = (r.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
if (r.crashing) {
report.type = ApplicationErrorReport.TYPE_CRASH;