Lines Matching refs:mException
87 : mException(exceptionCode), in Status()
91 : mException(exceptionCode), in Status()
96 status_t status = parcel.readInt32(&mException); in readFromParcel()
103 if (mException == EX_HAS_REPLY_HEADER) { in readFromParcel()
125 mException = EX_NONE; in readFromParcel()
128 if (mException == EX_NONE) { in readFromParcel()
163 if (mException == EX_SERVICE_SPECIFIC) { in readFromParcel()
165 } else if (mException == EX_PARCELABLE) { in readFromParcel()
197 if (mException == EX_TRANSACTION_FAILED) { in writeToParcel()
201 status_t status = parcel->writeInt32(mException); in writeToParcel()
203 if (mException == EX_NONE) { in writeToParcel()
211 if (mException == EX_SERVICE_SPECIFIC) { in writeToParcel()
213 } else if (mException == EX_PARCELABLE) { in writeToParcel()
227 mException = ex; in setException()
238 mException = (status == NO_ERROR) ? EX_NONE : EX_TRANSACTION_FAILED; in setFromStatusT()
245 if (mException == EX_NONE) { in toString8()
248 ret.appendFormat("Status(%d, %s): '", mException, exceptionToString(mException).c_str()); in toString8()
249 if (mException == EX_SERVICE_SPECIFIC) { in toString8()
251 } else if (mException == EX_TRANSACTION_FAILED) { in toString8()