Home
last modified time | relevance | path

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

/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/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.java1308 operation.mException = null; in beginOperation()
1342 operation.mException = ex; in failOperation()
1448 public Exception mException; field in SQLiteConnection.Operation
1483 if (mException != null) { in describe()
1484 msg.append(", exception=\"").append(mException.getMessage()).append("\""); in describe()
1492 return mException != null ? "failed" : "succeeded"; in getStatus()