Lines Matching refs:mException
61 : mException(exceptionCode), in Status()
65 : mException(exceptionCode), in Status()
70 status_t status = parcel.readInt32(&mException); in readFromParcel()
77 if (mException == EX_HAS_REPLY_HEADER) { in readFromParcel()
89 mException = EX_NONE; in readFromParcel()
92 if (mException == EX_NONE) { in readFromParcel()
105 if (mException == EX_SERVICE_SPECIFIC) { in readFromParcel()
107 } else if (mException == EX_PARCELABLE) { in readFromParcel()
129 if (mException == EX_TRANSACTION_FAILED) { in writeToParcel()
133 status_t status = parcel->writeInt32(mException); in writeToParcel()
135 if (mException == EX_NONE) { in writeToParcel()
140 if (mException == EX_SERVICE_SPECIFIC) { in writeToParcel()
142 } else if (mException == EX_PARCELABLE) { in writeToParcel()
150 mException = ex; in setException()
161 mException = (status == NO_ERROR) ? EX_NONE : EX_TRANSACTION_FAILED; in setFromStatusT()
168 if (mException == EX_NONE) { in toString8()
171 ret.appendFormat("Status(%d): '", mException); in toString8()
172 if (mException == EX_SERVICE_SPECIFIC || in toString8()
173 mException == EX_TRANSACTION_FAILED) { in toString8()