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

1 2 3 4 5 6

  /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();
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
MockInstrumentationTest.java 27 private DeviceNotAvailableException mException = null;
33 if (mException != null) {
34 throw mException;
47 mException = e;
  /cts/tests/autofillservice/src/android/autofillservice/cts/
RetryRuleTest.java 41 private final T mException;
45 mException = exception;
52 throw mException;
MyWebView.java 53 if (mExpectation.mException != null) {
54 throw mExpectation.mException;
72 mExpectation.mException =
90 mExpectation.mException = e;
104 private Exception mException;
  /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;
  /external/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;
  /frameworks/native/libs/binder/include/binder/
Status.h 123 int32_t exceptionCode() const { return mException; }
126 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK;
129 return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0;
132 bool isOk() const { return mException == EX_NONE; }
141 // If |mException| == EX_TRANSACTION_FAILED, generated code will return
145 // Otherwise, we always write |mException| to the parcel.
146 // If |mException| != EX_NONE, we write |mMessage| as well.
147 // If |mException| == EX_SERVICE_SPECIFIC we write |mErrorCode| as well.
148 int32_t mException = EX_NONE;
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
DeviceTestResult.java 43 private DeviceNotAvailableException mException;
47 mException = e;
51 return mException;
  /developers/build/prebuilts/gradle/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
NetworkFragment.java 132 public Exception mException;
137 mException = exception;
198 if (result.mException != null) {
199 mCallback.updateFromDownload(result.mException.getMessage());
  /developers/samples/android/connectivity/network/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
NetworkFragment.java 132 public Exception mException;
137 mException = exception;
198 if (result.mException != null) {
199 mCallback.updateFromDownload(result.mException.getMessage());
  /development/samples/browseable/NetworkConnect/src/com.example.android.networkconnect/
NetworkFragment.java 132 public Exception mException;
137 mException = exception;
198 if (result.mException != null) {
199 mCallback.updateFromDownload(result.mException.getMessage());
  /device/google/cuttlefish_common/guest/monitoring/vsoc_service/java/com/android/google/gce/gceservice/
GceFuture.java 29 private Exception mException = null;
67 mException = e;
91 return (mException != null) && (mException instanceof CancellationException);
122 if (mException != null) {
123 if (mException instanceof CancellationException)
124 throw (CancellationException)mException;
125 throw new ExecutionException(mException);
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
UrlDownloaderTask.java 46 private Throwable mException;
103 mException = e;
133 if (mException != null) {
134 Log.e("Download failed.", mException);
ZipExtractorTask.java 50 private Throwable mException;
115 mException = e;
141 if (mException != null) {
142 Log.e("Zip extraction failed.", mException);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
AsyncRunner.java 36 private Exception mException;
228 return mException;
236 mException = exception;
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/wear/
InstallTask.java 48 private Exception mException = null;
82 mException = e;
92 if (mException == null) {
93 mException = e;
104 + mErrorDesc + ", " + mException);
  /system/libhidl/base/include/hidl/
Status.h 103 int32_t exceptionCode() const { return mException; }
106 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK;
109 bool isOk() const { return mException == EX_NONE; }
118 // If |mException| == EX_TRANSACTION_FAILED, generated code will return
122 // Otherwise, we always write |mException| to the parcel.
123 // If |mException| != EX_NONE, we write |mMessage| as well.
124 int32_t mException = EX_NONE;
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/util/src/com/android/cts/util/
TestResult.java 35 private final String mException;
56 return mException;
94 mException = exception;
110 dest.writeString(mException);
129 mException = source.readString();
  /cts/tests/openglperf2/src/android/opengl2/cts/primitive/
GLPrimitiveActivity.java 34 private volatile Exception mException;
88 if (mException != null) {
89 throw mException;
100 if (mException == null) {
101 mException = e;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
NotificationInflaterTest.java 249 if (exceptionHolder.mException != null) {
250 throw exceptionHolder.mException;
255 private Exception mException;
258 mException = exception;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
UiccCardApplicationTest.java 51 private CommandException mException = null;
82 mException = (CommandException) ((AsyncResult) msg.obj).exception;
195 assertNull(mException);
216 assertNotNull(mException);
217 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);
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/net/
HttpHelperFuncTest.java 114 public Throwable mException = null;
140 return mException;
158 mException = e;
  /packages/apps/Dialer/java/com/android/contacts/common/model/
Contact.java 64 private final Exception mException;
86 mException = exception;
130 mException = null;
157 mException = from.mException;
249 return mException;
  /packages/apps/DocumentsUI/src/com/android/documentsui/
Model.java 286 private final @Nullable Exception mException;
291 mException = null;
298 mException = exception;
313 && mException instanceof AuthenticationRequiredException;
317 return mException;

Completed in 684 milliseconds

1 2 3 4 5 6