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

/frameworks/native/libs/binder/
H A DStatus.cpp51 : mException(exceptionCode),
55 : mException(exceptionCode),
60 status_t status = parcel.readInt32(&mException);
67 if (mException == EX_HAS_REPLY_HEADER) {
79 mException = EX_NONE;
82 if (mException == EX_NONE) {
95 if (mException == EX_SERVICE_SPECIFIC) {
109 if (mException == EX_TRANSACTION_FAILED) {
113 status_t status = parcel->writeInt32(mException);
115 if (mException
[all...]
/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/native/include/binder/
H A DStatus.h114 int32_t exceptionCode() const { return mException; }
117 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK;
120 return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0;
123 bool isOk() const { return mException == EX_NONE; }
132 // If |mException| == EX_TRANSACTION_FAILED, generated code will return
136 // Otherwise, we always write |mException| to the parcel.
137 // If |mException| != EX_NONE, we write |mMessage| as well.
138 // If |mException| == EX_SERVICE_SPECIFIC we write |mErrorCode| as well.
139 int32_t mException = EX_NONE; member in class:android::binder::final
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
H A DUiccCardApplicationTest.java49 private CommandException mException = null; field in class:UiccCardApplicationTest
80 mException = (CommandException) ((AsyncResult) msg.obj).exception;
192 assertNull(mException);
213 assertNotNull(mException);
214 assertEquals(CommandException.Error.PASSWORD_INCORRECT, mException.getCommandError());
/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.java1310 operation.mException = null;
1349 operation.mException = ex;
1466 public Exception mException; field in class:SQLiteConnection.Operation
1501 if (mException != null) {
1502 msg.append(", exception=\"").append(mException.getMessage()).append("\"");
1510 return mException != null ? "failed" : "succeeded";
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 1489 milliseconds