Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/
DStatus.cpp87 : mException(exceptionCode), in Status()
91 : mException(exceptionCode), in Status()
96 status_t status = parcel.readInt32(&mException); in readFromParcel()
103 if (mException == EX_HAS_REPLY_HEADER) { in readFromParcel()
125 mException = EX_NONE; in readFromParcel()
128 if (mException == EX_NONE) { in readFromParcel()
157 if (mException == EX_SERVICE_SPECIFIC) { in readFromParcel()
159 } else if (mException == EX_PARCELABLE) { in readFromParcel()
191 if (mException == EX_TRANSACTION_FAILED) { in writeToParcel()
195 status_t status = parcel->writeInt32(mException); in writeToParcel()
[all …]
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/utils/
DSlogfTest.java47 private final Exception mException = new Exception("D'OH!"); field in SlogfTest
82 Slogf.v(TAG, "msg", mException); in testV_msgAndException()
84 verify(()-> Slog.v(TAG, "msg", mException)); in testV_msgAndException()
114 Slogf.d(TAG, "msg", mException); in testD_msgAndException()
116 verify(()-> Slog.d(TAG, "msg", mException)); in testD_msgAndException()
146 Slogf.i(TAG, "msg", mException); in testI_msgAndException()
148 verify(()-> Slog.i(TAG, "msg", mException)); in testI_msgAndException()
178 Slogf.w(TAG, "msg", mException); in testW_msgAndException()
180 verify(()-> Slog.w(TAG, "msg", mException)); in testW_msgAndException()
185 Slogf.w(TAG, mException); in testW_exception()
[all …]
/frameworks/native/include/binder/
DStatus.h130 int32_t exceptionCode() const { return mException; } in exceptionCode()
133 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK; in transactionError()
136 return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0; in serviceSpecificErrorCode()
139 bool isOk() const { return mException == EX_NONE; } in isOk()
155 int32_t mException = EX_NONE; variable
/frameworks/native/libs/binder/include/binder/
DStatus.h130 int32_t exceptionCode() const { return mException; } in exceptionCode()
133 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK; in transactionError()
136 return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0; in serviceSpecificErrorCode()
139 bool isOk() const { return mException == EX_NONE; } in isOk()
155 int32_t mException = EX_NONE; variable
/frameworks/base/core/java/android/content/pm/parsing/result/
DParseTypeImpl.java55 private Exception mException; field in ParseTypeImpl
115 mException = null;
131 + mErrorMessage, mException);
224 mException = exception;
228 mException = new Exception();
233 Exception exceptionToLog = mException != null ? mException : new Exception();
271 return mException;
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/wear/
DInstallTask.java48 private Exception mException = null; field in InstallTask
82 mException = e; in execute()
92 if (mException == null) { in execute()
93 mException = e; in execute()
104 + mErrorDesc + ", " + mException); in execute()
/frameworks/base/media/java/android/media/metrics/
DPlaybackErrorEvent.java319 private @Nullable Exception mException; field in PlaybackErrorEvent.Builder
336 mException = value; in setException()
383 if (mException.getStackTrace() != null && mException.getStackTrace().length > 0) { in build()
385 stack = mException.getStackTrace()[0].toString(); in build()
/frameworks/base/graphics/java/android/graphics/fonts/
DFont.java86 private @Nullable IOException mException; field in Font.Builder
142 mException = e; in Builder()
170 mException = e; in Builder()
184 mException = e; in Builder()
202 mException = e; in Builder()
218 mException = new FileNotFoundException(resId + " not found"); in Builder()
223 mException = new FileNotFoundException(resId + " must be font file."); in Builder()
230 mException = e; in Builder()
447 if (mException != null) { in build()
448 throw new IOException("Failed to read font contents", mException); in build()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccCardApplicationTest.java54 private CommandException mException = null; field in UiccCardApplicationTest
84 mException = (CommandException) ((AsyncResult) msg.obj).exception; in setUp()
175 assertNull(mException); in testChangeIccLockPassword()
194 assertNotNull(mException); in testSupplyPin()
195 assertEquals(CommandException.Error.PASSWORD_INCORRECT, mException.getCommandError()); in testSupplyPin()
/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/services/core/java/com/android/server/soundtrigger_middleware/
DSoundTriggerHw2Watchdog.java156 Exception mException = new Exception(); field in SoundTriggerHw2Watchdog.Watchdog
162 Log.e(TAG, "HAL deadline expired. Rebooting.", mException); in Watchdog()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflaterTest.java376 if (exceptionHolder.mException != null) { in inflateAndWait()
377 throw exceptionHolder.mException; in inflateAndWait()
382 private Exception mException; field in NotificationContentInflaterTest.ExceptionHolder
385 mException = exception; in setException()
/frameworks/base/core/java/android/database/sqlite/
DSQLiteConnectionPool.java766 final RuntimeException ex = waiter.mException; in waitForConnection()
796 if (waiter.mAssignedConnection != null || waiter.mException != null) { in cancelConnectionWaiterLocked()
816 waiter.mException = new OperationCanceledException(); in cancelConnectionWaiterLocked()
907 waiter.mException = ex; in wakeConnectionWaitersLocked()
1099 waiter.mException = null; in recycleConnectionWaiterLocked()
1203 public RuntimeException mException; field in SQLiteConnectionPool.ConnectionWaiter
DSQLiteConnection.java1480 operation.mException = null; in beginOperation()
1522 operation.mException = ex; in failOperation()
1656 public Exception mException; field in SQLiteConnection.Operation
1697 if (mException != null) { in describe()
1698 msg.append(", exception=\"").append(mException.getMessage()).append("\""); in describe()
1712 return mException != null ? "failed" : "succeeded"; in getStatus()
/frameworks/base/services/robotests/backup/src/com/android/server/backup/keyvalue/
DKeyValueBackupTaskTest.java3009 private final RuntimeException mException; field in ThrowingPackageManagerBackupAgent
3015 mException = exception; in ThrowingPackageManagerBackupAgent()
3023 throw mException; in onBackup()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt17330 Landroid/database/sqlite/SQLiteConnection$Operation;->mException:Ljava/lang/Exception;
17461 Landroid/database/sqlite/SQLiteConnectionPool$ConnectionWaiter;->mException:Ljava/lang/RuntimeExcep…
17939 Landroid/filterfw/core/AsyncRunner;->mException:Ljava/lang/Exception;