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()
157 if (mException == EX_SERVICE_SPECIFIC) { in readFromParcel()
159 } else if (mException == EX_PARCELABLE) { in readFromParcel()
191 if (mException == EX_TRANSACTION_FAILED) { in writeToParcel()
195 status_t status = parcel->writeInt32(mException); in writeToParcel()
197 if (mException == EX_NONE) { in writeToParcel()
205 if (mException == EX_SERVICE_SPECIFIC) { in writeToParcel()
207 } else if (mException == EX_PARCELABLE) { in writeToParcel()
215 mException = ex; in setException()
226 mException = (status == NO_ERROR) ? EX_NONE : EX_TRANSACTION_FAILED; in setFromStatusT()
233 if (mException == EX_NONE) { in toString8()
236 ret.appendFormat("Status(%d, %s): '", mException, exceptionToString(mException).c_str()); in toString8()
237 if (mException == EX_SERVICE_SPECIFIC) { in toString8()
239 } else if (mException == EX_TRANSACTION_FAILED) { in toString8()