Class Overview
Information you can retrieve about any processes that are in an error condition.
Summary
| Fields |
|
public
int |
condition |
The condition that the process is in. |
|
public
byte[] |
crashData |
Raw data about the crash (typically a stack trace). |
|
public
String |
longMsg |
A long message describing the error condition. |
|
public
int |
pid |
The pid of this process; 0 if none
|
|
public
String |
processName |
The process name in which the crash or error occurred. |
|
public
String |
shortMsg |
A short message describing the error condition. |
|
public
String |
tag |
The tag that was provided when the process crashed. |
|
public
int |
uid |
The kernel user-ID that has been assigned to this process;
currently this is not a unique ID (multiple applications can have
the same uid). |
|
[Expand]
Inherited Methods |
From class java.lang.Object
|
Object
|
clone()
Returns a new instance of the same class as the receiver, whose slots
have been filled in with the values in the slots of the receiver.
|
|
boolean
|
equals(Object o)
Compares the argument to the receiver, and returns true if they represent
the same object using a class specific comparison.
|
|
void
|
finalize()
Called by the virtual machine when there are no longer any (non-weak)
references to the receiver.
|
|
final
Class<? extends Object>
|
getClass()
Returns the unique instance of java.lang.Class which represents the class
of the receiver.
|
|
int
|
hashCode()
Returns an integer hash code for the receiver.
|
|
final
void
|
notify()
Causes one thread which is wait ing on the receiver to be
made ready to run.
|
|
final
void
|
notifyAll()
Causes all threads which are wait ing on the receiver to
be made ready to run.
|
|
String
|
toString()
Returns a string containing a concise, human-readable description of the
receiver.
|
|
final
void
|
wait(long time, int frac)
Causes the thread which sent this message to be made not ready to run
either pending some change in the receiver (as indicated by
notify or notifyAll) or the expiration of
the timeout.
|
|
final
void
|
wait(long time)
Causes the thread which sent this message to be made not ready to run
either pending some change in the receiver (as indicated by
notify or notifyAll) or the expiration of
the timeout.
|
|
final
void
|
wait()
Causes the thread which sent this message to be made not ready to run
pending some change in the receiver (as indicated by notify
or notifyAll).
|
|
From interface android.os.Parcelable
|
abstract
int
|
describeContents()
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
|
|
abstract
void
|
writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel.
|
|
Constants
public
static
final
int
CRASHED
Constant Value:
1
(0x00000001)
public
static
final
int
NOT_RESPONDING
Constant Value:
2
(0x00000002)
public
static
final
int
NO_ERROR
Constant Value:
0
(0x00000000)
Fields
public
int
condition
The condition that the process is in.
public
byte[]
crashData
Raw data about the crash (typically a stack trace).
public
String
longMsg
A long message describing the error condition.
public
int
pid
The pid of this process; 0 if none
public
String
processName
The process name in which the crash or error occurred.
public
String
shortMsg
A short message describing the error condition.
The tag that was provided when the process crashed.
public
int
uid
The kernel user-ID that has been assigned to this process;
currently this is not a unique ID (multiple applications can have
the same uid).
Public Constructors
public
ActivityManager.ProcessErrorStateInfo
()
Public Methods
public
int
describeContents
()
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
Returns
- a bitmask indicating the set of special object types marshalled
by the Parcelable.
public
void
readFromParcel
(Parcel source)
public
void
writeToParcel
(Parcel dest, int flags)
Flatten this object in to a Parcel.
Parameters
| dest
| The Parcel in which the object should be written. |
| flags
| Additional flags about how the object should be written.
May be 0 or PARCELABLE_WRITE_RETURN_VALUE.
|