Searched refs:mException (Results 1 – 7 of 7) sorted by relevance
51 : mException(exceptionCode), in Status()55 : mException(exceptionCode), in Status()60 status_t status = parcel.readInt32(&mException); in readFromParcel()67 if (mException == EX_HAS_REPLY_HEADER) { in readFromParcel()79 mException = EX_NONE; in readFromParcel()82 if (mException == EX_NONE) { in readFromParcel()95 if (mException == EX_SERVICE_SPECIFIC) { in readFromParcel()109 if (mException == EX_TRANSACTION_FAILED) { in writeToParcel()113 status_t status = parcel->writeInt32(mException); in writeToParcel()115 if (mException == EX_NONE) { in writeToParcel()[all …]
59 private VolleyError mException; field in RequestFuture102 if (mException != null) { in doGet()103 throw new ExecutionException(mException); in doGet()116 if (mException != null) { in doGet()117 throw new ExecutionException(mException); in doGet()137 return mResultReceived || mException != null || isCancelled(); in isDone()149 mException = error; in onErrorResponse()
114 int32_t exceptionCode() const { return mException; } in exceptionCode()117 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK; in transactionError()120 return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0; in serviceSpecificErrorCode()123 bool isOk() const { return mException == EX_NONE; } in isOk()139 int32_t mException = EX_NONE; variable
49 private CommandException mException = null; field in UiccCardApplicationTest80 mException = (CommandException) ((AsyncResult) msg.obj).exception; in onLooperPrepared()192 assertNull(mException); in testChangeIccLockPassword()213 assertNotNull(mException); in testSupplyPin()214 assertEquals(CommandException.Error.PASSWORD_INCORRECT, mException.getCommandError()); in testSupplyPin()
36 private Exception mException; field in AsyncRunner228 return mException; in getError()236 mException = exception; in setException()
680 final RuntimeException ex = waiter.mException; in waitForConnection()709 if (waiter.mAssignedConnection != null || waiter.mException != null) { in cancelConnectionWaiterLocked()729 waiter.mException = new OperationCanceledException(); in cancelConnectionWaiterLocked()819 waiter.mException = ex; in wakeConnectionWaitersLocked()990 waiter.mException = null; in recycleConnectionWaiterLocked()1069 public RuntimeException mException; field in SQLiteConnectionPool.ConnectionWaiter
1310 operation.mException = null; in beginOperation()1349 operation.mException = ex; in failOperation()1466 public Exception mException; field in SQLiteConnection.Operation1501 if (mException != null) { in describe()1502 msg.append(", exception=\"").append(mException.getMessage()).append("\""); in describe()1510 return mException != null ? "failed" : "succeeded"; in getStatus()