/frameworks/native/libs/binder/ |
D | Status.cpp | 87 : 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/native/libs/binder/include/binder/ |
D | Status.h | 126 int32_t exceptionCode() const { return mException; } in exceptionCode() 129 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK; in transactionError() 132 return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0; in serviceSpecificErrorCode() 135 bool isOk() const { return mException == EX_NONE; } in isOk() 151 int32_t mException = EX_NONE; variable
|
/frameworks/native/include/binder/ |
D | Status.h | 126 int32_t exceptionCode() const { return mException; } in exceptionCode() 129 return mException == EX_TRANSACTION_FAILED ? mErrorCode : OK; in transactionError() 132 return mException == EX_SERVICE_SPECIFIC ? mErrorCode : 0; in serviceSpecificErrorCode() 135 bool isOk() const { return mException == EX_NONE; } in isOk() 151 int32_t mException = EX_NONE; variable
|
/frameworks/base/graphics/java/android/graphics/fonts/ |
D | Font.java | 72 private @Nullable IOException mException; field in Font.Builder 115 mException = e; in Builder() 143 mException = e; in Builder() 170 mException = new FileNotFoundException("Unable to open " + path); in Builder() 176 mException = new FileNotFoundException(path + " not found"); in Builder() 194 mException = new FileNotFoundException(resId + " not found"); in Builder() 199 mException = new FileNotFoundException(resId + " must be font file."); in Builder() 205 mException = new FileNotFoundException("Unable to open " + str); in Builder() 211 mException = new FileNotFoundException(str + " not found"); in Builder() 360 if (mException != null) { in build() [all …]
|
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/wear/ |
D | InstallTask.java | 48 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/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/ |
D | UiccCardApplicationTest.java | 54 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/ |
D | AsyncRunner.java | 36 private Exception mException; field in AsyncRunner 228 return mException; in getError() 236 mException = exception; in setException()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentInflaterTest.java | 281 if (exceptionHolder.mException != null) { in runThenWaitForInflation() 282 throw exceptionHolder.mException; in runThenWaitForInflation() 287 private Exception mException; field in NotificationContentInflaterTest.ExceptionHolder 290 mException = exception; in setException()
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteConnectionPool.java | 766 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
|
D | SQLiteConnection.java | 1417 operation.mException = null; in beginOperation() 1459 operation.mException = ex; in failOperation() 1593 public Exception mException; field in SQLiteConnection.Operation 1634 if (mException != null) { in describe() 1635 msg.append(", exception=\"").append(mException.getMessage()).append("\""); in describe() 1649 return mException != null ? "failed" : "succeeded"; in getStatus()
|
/frameworks/base/services/robotests/backup/src/com/android/server/backup/keyvalue/ |
D | KeyValueBackupTaskTest.java | 2847 private final RuntimeException mException; field in ThrowingPackageManagerBackupAgent 2852 mException = exception; in ThrowingPackageManagerBackupAgent() 2860 throw mException; in onBackup()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 17339 Landroid/database/sqlite/SQLiteConnection$Operation;->mException:Ljava/lang/Exception; 17470 Landroid/database/sqlite/SQLiteConnectionPool$ConnectionWaiter;->mException:Ljava/lang/RuntimeExcep… 17948 Landroid/filterfw/core/AsyncRunner;->mException:Ljava/lang/Exception;
|