Home
last modified time | relevance | path

Searched refs:mException (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/libs/binder/
DStatus.cpp51 : 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 …]
/frameworks/volley/src/main/java/com/android/volley/toolbox/
DRequestFuture.java59 private VolleyError mException; field in RequestFuture
102 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()
/frameworks/native/include/binder/
DStatus.h114 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
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccCardApplicationTest.java49 private CommandException mException = null; field in UiccCardApplicationTest
80 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()
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
DAsyncRunner.java36 private Exception mException; field in AsyncRunner
228 return mException; in getError()
236 mException = exception; in setException()
/frameworks/base/core/java/android/database/sqlite/
DSQLiteConnectionPool.java680 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
DSQLiteConnection.java1310 operation.mException = null; in beginOperation()
1349 operation.mException = ex; in failOperation()
1466 public Exception mException; field in SQLiteConnection.Operation
1501 if (mException != null) { in describe()
1502 msg.append(", exception=\"").append(mException.getMessage()).append("\""); in describe()
1510 return mException != null ? "failed" : "succeeded"; in getStatus()