HomeSort by relevance Sort by last modified time
    Searched refs:mException (Results 1 - 25 of 60) sorted by null

1 2 3

  /frameworks/native/libs/binder/
Status.cpp 51 : 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 == EX_NONE)
    [all...]
  /external/doclava/src/com/google/doclava/
ThrowsTagInfo.java 33 private ClassInfo mException;
44 mException = ((ClassInfo) base).findClass(className);
46 if (mException == null) {
47 mException = Converter.obtainClass(className);
55 mException = exception;
60 return mException;
64 if (mException != null) {
65 return mException.asTypeInfo();
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
RequestFuture.java 59 private VolleyError mException;
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;
  /cts/tests/openglperf2/src/android/opengl2/cts/reference/
GLReferenceActivity.java 27 private volatile Exception mException;
54 if (mException != null) {
55 throw mException;
60 if (mException == null) {
61 mException = e;
  /frameworks/native/include/binder/
Status.h 114 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;
  /packages/services/Car/service/src/com/android/car/
CarTestService.java 43 private Exception mException = null;
88 mException = null;
93 mException = e;
101 if (mException != null) {
102 throw new IllegalStateException(mException);
120 mException = null;
  /cts/tests/tests/view/src/android/view/cts/
TouchDelegateTest.java 44 private Exception mException;
63 mException = e;
69 if(mException != null) {
70 throw mException;
  /cts/tests/openglperf2/src/android/opengl2/cts/primitive/
GLPrimitiveActivity.java 33 private volatile Exception mException;
87 if (mException != null) {
88 throw mException;
99 if (mException == null) {
100 mException = e;
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
UrlDownloaderTask.java 50 private Throwable mException;
107 mException = e;
137 if (mException != null) {
138 Log.e("Download failed.", mException);
ZipExtractorTask.java 52 private Throwable mException;
117 mException = e;
143 if (mException != null) {
144 Log.e("Zip extraction failed.", mException);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
MediaResourceManager.java 241 private Exception mException;
252 mException = e;
260 Assert.isNull(mException);
271 } else if (mException != null) {
273 mediaRequest.getKey(), mException);
275 bindableRequest.onMediaResourceLoadError(bindableRequest, mException);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
UiccCardApplicationTest.java 49 private CommandException mException = null;
80 mException = (CommandException) ((AsyncResult) msg.obj).exception;
192 assertNull(mException);
213 assertNotNull(mException);
214 assertEquals(CommandException.Error.PASSWORD_INCORRECT, mException.getCommandError());
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
ImagePersistTask.java 48 private Exception mException;
133 mException = e;
149 mException = e;
168 Assert.notNull(mException);
169 mCallback.onMediaFailed(mException);
CameraManager.java 417 private Exception mException;
429 mException = e;
452 mListener.onCameraError(ERROR_OPENING_CAMERA, mException);
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
AsyncRunner.java 36 private Exception mException;
228 return mException;
236 mException = exception;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
Contact.java 98 private final Exception mException;
108 mException = exception;
149 mException = null;
177 mException = from.mException;
287 return mException;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnectionPool.java 680 final RuntimeException ex = waiter.mException;
709 if (waiter.mAssignedConnection != null || waiter.mException != null) {
729 waiter.mException = new OperationCanceledException();
    [all...]
SQLiteConnection.java     [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
JarHostTest.java 234 private RuntimeDeviceNotAvailableException mException = null;
250 mException = e;
256 return mException;
  /cts/tests/tests/netsecpolicy/src/android/security/
NetworkSecurityPolicyTestBase.java 285 private Throwable mException;
300 mException = exception;
359 if (mException != null) {
360 throw new ExecutionException(mException);
  /external/webrtc/webrtc/examples/androidapp/third_party/autobanh/
autobanh.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/1.4.0-beta3/
builder-1.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/1.4.0-beta5/
builder-1.4.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/1.4.0-beta6/
builder-1.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.0.0/
builder-2.0.0.jar 

Completed in 1084 milliseconds

1 2 3