Home
last modified time | relevance | path

Searched refs:errorMessage (Results 1 – 25 of 60) sorted by relevance

123

/packages/modules/CellBroadcastService/src/com/android/cellbroadcastservice/
DCdmaServiceCategoryProgramHandler.java116 final String errorMessage = in handleSmsMessage() local
118 loge(errorMessage); in handleSmsMessage()
121 errorMessage); in handleSmsMessage()
138 final String errorMessage = in handleServiceCategoryProgramData() local
140 loge(errorMessage); in handleServiceCategoryProgramData()
143 errorMessage); in handleServiceCategoryProgramData()
171 final String errorMessage = "SCP results error: result code = " + resultCode;
172 loge(errorMessage);
175 errorMessage);
DSmsCbHeader.java134 final String errorMessage = "Illegal PDU"; in SmsCbHeader() local
137 errorMessage); in SmsCbHeader()
138 throw new IllegalArgumentException(errorMessage); in SmsCbHeader()
574 final String errorMessage = in DataCodingScheme() local
578 errorMessage); in DataCodingScheme()
579 throw new IllegalArgumentException(errorMessage); in DataCodingScheme()
DDefaultCellBroadcastService.java139 final String errorMessage = "Error decoding bearer data e=" + e.toString(); in parseCdmaBroadcastSms()
140 Log.e(TAG, errorMessage); in parseCdmaBroadcastSms()
142 CELL_BROADCAST_MESSAGE_ERROR__TYPE__CDMA_DECODING_ERROR, errorMessage); in parseCdmaBroadcastSms()
DGsmCellBroadcastHandler.java482 final String errorMessage = "handleSmsMessage for GSM got object of type: " in handleSmsMessage() local
484 loge(errorMessage); in handleSmsMessage()
487 errorMessage); in handleSmsMessage()
676 final String errorMessage = "Error in decoding SMS CB pdu: " + e.toString(); in handleGsmBroadcastSms()
678 loge(errorMessage); in handleGsmBroadcastSms()
680 CELL_BROADCAST_MESSAGE_ERROR__TYPE__GSM_INVALID_PDU, errorMessage); in handleGsmBroadcastSms()
DCbGeoUtils.java81 final String errorMessage = "Invalid geometry format " + geometryStr; in parseGeometriesFromString() local
82 Log.e(TAG, errorMessage); in parseGeometriesFromString()
85 errorMessage); in parseGeometriesFromString()
/packages/services/Car/car-lib/src/android/car/user/
DUserIdentificationAssociationResponse.java72 @Nullable String errorMessage, in UserIdentificationAssociationResponse() argument
75 this.mErrorMessage = errorMessage; in UserIdentificationAssociationResponse()
91 public static UserIdentificationAssociationResponse forFailure(@Nullable String errorMessage) { in forFailure() argument
93 errorMessage, /* values= */ null); in forFailure()
112 @UserIdentificationAssociationValue int[] values, @Nullable String errorMessage) { in forSuccess() argument
114 return new UserIdentificationAssociationResponse(/* success= */ true, errorMessage, in forSuccess()
212 String errorMessage = (flg & 0x2) == 0 ? null : in.readString(); in UserIdentificationAssociationResponse() local
216 this.mErrorMessage = errorMessage; in UserIdentificationAssociationResponse()
DUserCreationResult.java174 @Nullable String errorMessage) { in UserCreationResult() argument
192 this.mErrorMessage = errorMessage; in UserCreationResult()
269 String errorMessage = (flg & 0x4) == 0 ? null : in.readString(); in UserCreationResult() local
288 this.mErrorMessage = errorMessage; in UserCreationResult()
DUserSwitchResult.java209 @Nullable String errorMessage) { in UserSwitchResult() argument
236 this.mErrorMessage = errorMessage; in UserSwitchResult()
306 String errorMessage = (flg & 0x2) == 0 ? null : in.readString(); in UserSwitchResult() local
334 this.mErrorMessage = errorMessage; in UserSwitchResult()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DEapFailureNotifier.java76 String errorMessage = res.getString(resourceId, config.SSID); in onEapFailure()
77 if (TextUtils.isEmpty(errorMessage)) return false; in onEapFailure()
87 showNotification(errorMessage, config.SSID); in onEapFailure()
97 private void showNotification(String errorMessage, String ssid) { in showNotification() argument
110 .setContentText(errorMessage) in showNotification()
111 .setStyle(new Notification.BigTextStyle().bigText(errorMessage)) in showNotification()
/packages/services/Car/cpp/computepipe/runner/graph/
DLocalPrebuiltGraph.cpp281 std::vector<unsigned char> errorMessage(errorMessageSize); in GetErrorMessage() local
283 errorCode = mappedFn(&errorMessage[0], errorMessage.size(), &errorMessageSize); in GetErrorMessage()
288 return std::string(reinterpret_cast<char*>(&errorMessage[0]), in GetErrorMessage()
289 reinterpret_cast<char*>(&errorMessage[0]) + errorMessage.size()); in GetErrorMessage()
401 std::string errorMessage = ""; in GraphTerminationCallbackFunction() local
407 std::move(errorMessage)); in GraphTerminationCallbackFunction()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/testutils/
DPollingCheck.java44 public PollingCheck(long timeout, String errorMessage) { in PollingCheck() argument
46 mErrorMessage = errorMessage; in PollingCheck()
106 public static void waitFor(long timeout, BooleanSupplier condition, String errorMessage) { in waitFor() argument
107 new PollingCheck(timeout, errorMessage) { in waitFor() argument
/packages/apps/Contacts/src/com/android/contacts/vcard/
DExportProcessor.java249 private String translateComposerError(String errorMessage) { in translateComposerError() argument
251 if (VCardComposer.FAILURE_REASON_FAILED_TO_GET_DATABASE_INFO.equals(errorMessage)) { in translateComposerError()
253 } else if (VCardComposer.FAILURE_REASON_NO_ENTRY.equals(errorMessage)) { in translateComposerError()
255 } else if (VCardComposer.FAILURE_REASON_NOT_INITIALIZED.equals(errorMessage)) { in translateComposerError()
258 return errorMessage; in translateComposerError()
/packages/services/Car/service/src/com/android/car/user/
DCarUserService.java1127 sendUserSwitchResult(receiver, halCallbackStatus, resultStatus, resp.errorMessage); in handleSwitchUser()
1432 resultStatus, resp.errorMessage); in handleCreateUser()
1453 resultStatus, resp.errorMessage); in handleCreateUser()
1458 sendUserCreationResult(receiver, resultStatus, user, resp.errorMessage); in handleCreateUser()
1522 return UserIdentificationAssociationResponse.forSuccess(values, halResponse.errorMessage); in getUserIdentificationAssociation()
1565 if (resp == null || TextUtils.isEmpty(resp.errorMessage)) { in setUserIdentificationAssociation()
1571 resp.errorMessage); in setUserIdentificationAssociation()
1573 UserIdentificationAssociationResponse.forFailure(resp.errorMessage)); in setUserIdentificationAssociation()
1578 resp.errorMessage); in setUserIdentificationAssociation()
1585 .forSuccess(responseTypes, resp.errorMessage); in setUserIdentificationAssociation()
[all …]
/packages/services/Car/cpp/evs/support_library/
DConfigManager.cpp66 std::string errorMessage; in initialize() local
68 bool parseOk = Json::parseFromStream(builder, configStream, &rootNode, &errorMessage); in initialize()
71 printf("%s\n", errorMessage.c_str()); in initialize()
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/
DSampleChunkIoHelper.java400 String errorMessage = in doOpenRead() local
402 SoftPreconditions.checkNotNull(readPosition, TAG, errorMessage); in doOpenRead()
403 throw new IOException(errorMessage); in doOpenRead()
483 String errorMessage = in doUpdateIndex() local
489 SoftPreconditions.checkNotNull(readPosition, TAG, errorMessage); in doUpdateIndex()
490 throw new IOException(errorMessage); in doUpdateIndex()
/packages/services/Car/cpp/evs/apps/default/
DConfigManager.cpp62 std::string errorMessage; in initialize() local
64 bool parseOk = Json::parseFromStream(builder, configStream, &rootNode, &errorMessage); in initialize()
67 printf("%s\n", errorMessage.c_str()); in initialize()
/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer2/buffer/
DSampleChunkIoHelper.java445 String errorMessage = in doOpenRead() local
447 SoftPreconditions.checkNotNull(readPosition, TAG, errorMessage); in doOpenRead()
448 throw new IOException(errorMessage); in doOpenRead()
528 String errorMessage = in doUpdateIndex() local
534 SoftPreconditions.checkNotNull(readPosition, TAG, errorMessage); in doUpdateIndex()
535 throw new IOException(errorMessage); in doUpdateIndex()
/packages/services/Car/car-test-lib/src/android/car/testapi/
DBlockingUserLifecycleListener.java291 String errorMessage = "did not receive all expected events (" + stateToString() + ")"; in waitForExpectedEvents() local
292 Log.e(TAG, errorMessage); in waitForExpectedEvents()
293 throw new IllegalStateException(errorMessage); in waitForExpectedEvents()
/packages/apps/TvSettings/TwoPanelSettingsLib/src/com/android/tv/twopanelsettings/
DTwoPanelSettingsFragment.java1095 public void showErrorMessage(String errorMessage, Fragment fragment) { in showErrorMessage() argument
1102 updatePreferenceWithErrorMessage(preference, errorMessage, getContext()); in showErrorMessage()
1114 appendErrorToContentDescription(prefFragment, errorMessage); in showErrorMessage()
1116 updatePreferenceWithErrorMessage(preference, errorMessage, getContext()); in showErrorMessage()
1123 Preference preference, String errorMessage, Context context) { in updatePreferenceWithErrorMessage() argument
1130 b.putCharSequence(EXTRA_PREFERENCE_INFO_SUMMARY, errorMessage); in updatePreferenceWithErrorMessage()
1133 private void appendErrorToContentDescription(Fragment fragment, String errorMessage) { in appendErrorToContentDescription() argument
1144 + HasCustomContentDescription.CONTENT_DESCRIPTION_SEPARATOR + errorMessage; in appendErrorToContentDescription()
/packages/modules/NeuralNetworks/shim_and_sl/
DShimUtils.cpp30 ndk::ScopedAStatus toAStatus(ErrorStatus errorStatus, const std::string& errorMessage) { in toAStatus() argument
35 static_cast<int32_t>(errorStatus), errorMessage.c_str()); in toAStatus()
/packages/apps/TV/common/src/com/android/tv/common/compat/internal/
DViewCompatProcessor.java74 String errorMessage = in handleEvent() local
76 Log.w(TAG, "Error sent in compat notify " + errorMessage); in handleEvent()
/packages/services/Car/service/src/com/android/car/
DCarShellCommand.java1385 String errorMessage = resp.errorMessage;
1386 if (!TextUtils.isEmpty(errorMessage)) {
1387 writer.printf("Error message: %s", errorMessage);
1503 String errorMessage = resp.errorMessage;
1504 if (!TextUtils.isEmpty(errorMessage)) {
1505 writer.printf("Error message: %s", errorMessage);
1680 if (!TextUtils.isEmpty(response.errorMessage)) {
1681 writer.printf("Error message: %s\n", response.errorMessage);
1701 String errorMessage = response.getErrorMessage();
1702 if (!TextUtils.isEmpty(errorMessage)) {
[all …]
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/
DIkeNormalModeCipher.java93 String errorMessage = in doCipherAction()
97 throw new IllegalArgumentException(errorMessage, e); in doCipherAction()
/packages/providers/MediaProvider/tests/client/src/com/android/providers/media/client/
DPublicVolumeSetupHelper.java184 static void pollForCondition(Supplier<Boolean> condition, String errorMessage) in pollForCondition() argument
192 throw new TimeoutException(errorMessage); in pollForCondition()
/packages/apps/TvSettings/TwoPanelSettingsLib/src/com/android/tv/twopanelsettings/slices/
DSliceFragment.java678 String errorMessage = uri.getQueryParameter(SlicesConstants.PARAMETER_ERROR); in handleUri() local
679 if (errorMessage != null) { in handleUri()
680 showErrorMessage(errorMessage); in handleUri()
689 private void showErrorMessage(String errorMessage) { in showErrorMessage() argument
691 ((TwoPanelSettingsFragment) getCallbackFragment()).showErrorMessage(errorMessage, this); in showErrorMessage()

123