ProcessErrorStateInfo
open class ProcessErrorStateInfo : Parcelable
kotlin.Any | |
↳ | android.app.ActivityManager.ProcessErrorStateInfo |
Information you can retrieve about any processes that are in an error condition.
Summary
Constants | |
---|---|
static Int | |
static Int | |
static Int |
Condition codes |
Inherited constants | |
---|---|
Public constructors | |
---|---|
Public methods | |
---|---|
open Int | |
open Unit |
readFromParcel(source: Parcel!) |
open Unit |
writeToParcel(dest: Parcel, flags: Int) |
Properties | |
---|---|
static Parcelable.Creator<ActivityManager.ProcessErrorStateInfo!> | |
Int |
The condition that the process is in. |
ByteArray! |
to be deprecated: This value will always be null. |
String! |
A long message describing the error condition. |
Int |
The pid of this process; 0 if none |
String! |
The process name in which the crash or error occurred. |
String! |
A short message describing the error condition. |
String! |
The stack trace where the error originated. |
String! |
The activity name associated with the error, if known. |
Int |
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). |
Constants
Public constructors
Public methods
describeContents
open fun describeContents(): Int
Return | |
---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR |
writeToParcel
open fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Parameters | |
---|---|
dest |
Parcel: The Parcel in which the object should be written. This value cannot be null . |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |
Properties
CREATOR
static val CREATOR: Parcelable.Creator<ActivityManager.ProcessErrorStateInfo!>
crashData
var crashData: ByteArray!
to be deprecated: This value will always be null.
processName
var processName: String!
The process name in which the crash or error occurred.
stackTrace
var stackTrace: String!
The stack trace where the error originated. May be null.
tag
var tag: String!
The activity name associated with the error, if known. May be null.
uid
var uid: Int
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).