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

/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DRequestFuture.java59 private VolleyError mException; field in class:RequestFuture
102 if (mException != null) {
103 throw new ExecutionException(mException);
116 if (mException != null) {
117 throw new ExecutionException(mException);
137 return mResultReceived || mException != null || isCancelled();
149 mException = error;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java36 private Exception mException; field in class:AsyncRunner
228 return mException;
236 mException = exception;
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java680 final RuntimeException ex = waiter.mException;
709 if (waiter.mAssignedConnection != null || waiter.mException != null) {
729 waiter.mException = new OperationCanceledException();
819 waiter.mException = ex;
990 waiter.mException = null;
1069 public RuntimeException mException; field in class:SQLiteConnectionPool.ConnectionWaiter
H A DSQLiteConnection.java1308 operation.mException = null;
1342 operation.mException = ex;
1448 public Exception mException; field in class:SQLiteConnection.Operation
1483 if (mException != null) {
1484 msg.append(", exception=\"").append(mException.getMessage()).append("\"");
1492 return mException != null ? "failed" : "succeeded";

Completed in 200 milliseconds