Home
last modified time | relevance | path

Searched defs:errorCode (Results 1 – 25 of 261) sorted by relevance

1234567891011

/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger_middleware/
DHalException.java34 public final int errorCode; field in HalException
36 public HalException(int errorCode, @NonNull String message) { in HalException()
41 public HalException(int errorCode) { in HalException()
DRecoverableException.java38 public final int errorCode; field in RecoverableException
40 public RecoverableException(int errorCode, @NonNull String message) { in RecoverableException()
45 public RecoverableException(int errorCode) { in RecoverableException()
/frameworks/base/core/java/android/os/
DServiceSpecificException.java37 public final int errorCode; field in ServiceSpecificException
39 public ServiceSpecificException(int errorCode, @Nullable String message) { in ServiceSpecificException()
44 public ServiceSpecificException(int errorCode) { in ServiceSpecificException()
/frameworks/base/core/java/android/hardware/camera2/impl/
DCameraInjectionSessionImpl.java155 public void onInjectionError(final int errorCode) { in onInjectionError()
186 private void scheduleNotifyError(final int errorCode) { in scheduleNotifyError()
197 private void notifyError(final int errorCode) { in notifyError()
215 public void onInjectionError(int errorCode) { in onInjectionError()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
DAcquisitionClient.java85 public void onError(int errorCode, int vendorCode) { in onError()
104 protected void onErrorInternal(int errorCode, int vendorCode, boolean finish) { in onErrorInternal()
113 errorCode, vendorCode, getTargetUserId()); in onErrorInternal() local
117 getListener().onError(getSensorId(), getCookie(), errorCode, vendorCode); in onErrorInternal() local
148 final int errorCode = BiometricConstants.BIOMETRIC_ERROR_CANCELED; in cancelWithoutStarting() local
151 getListener().onError(getSensorId(), getCookie(), errorCode, 0 /* vendorCode */); in cancelWithoutStarting() local
/frameworks/base/core/tests/coretests/src/android/content/pm/parsing/result/
DParseInputAndResultTest.kt79 fun errorCode() { in errorCode() method in android.content.pm.parsing.result.ParseInputAndResultTest
80 val errorCode = PackageManager.INSTALL_FAILED_UPDATE_INCOMPATIBLE in errorCode() constant
100 val errorCode = PackageManager.INSTALL_FAILED_UPDATE_INCOMPATIBLE in errorCodeAndMessage() constant
111 val errorCode = PackageManager.INSTALL_FAILED_UPDATE_INCOMPATIBLE in errorCodeAndMessageAndException() constant
123 val errorCode = PackageManager.INSTALL_FAILED_UPDATE_INCOMPATIBLE in errorCarryResult() constant
/frameworks/base/core/java/android/webkit/
DLegacyErrorStrings.java36 static String getString(int errorCode, Context context) { in getString()
44 private static int getResource(int errorCode) { in getResource()
/frameworks/base/core/java/com/android/internal/widget/
DPasswordValidationError.java40 public final int errorCode; field in PasswordValidationError
43 public PasswordValidationError(int errorCode) { in PasswordValidationError()
47 public PasswordValidationError(int errorCode, int requirement) { in PasswordValidationError()
/frameworks/base/core/java/android/service/voice/
DSoundTriggerFailure.java84 public SoundTriggerFailure(@SoundTriggerErrorCode int errorCode, @NonNull String errorMessage) { in SoundTriggerFailure()
91 public SoundTriggerFailure(@SoundTriggerErrorCode int errorCode, @NonNull String errorMessage, in SoundTriggerFailure()
139 private static int getSuggestedActionBasedOnErrorCode(@SoundTriggerErrorCode int errorCode) { in getSuggestedActionBasedOnErrorCode()
/frameworks/libs/gsma_services/satellite_client/src/android/telephony/satellite/wrapper/
DSatelliteTransmissionUpdateCallbackWrapper.java43 @SatelliteManagerWrapper.SatelliteError int errorCode); in onSendDatagramStateChanged()
55 @SatelliteManagerWrapper.SatelliteError int errorCode); in onReceiveDatagramStateChanged()
/frameworks/base/telephony/java/android/telephony/satellite/
DISatelliteTransmissionUpdateCallback.aidl33 void onSendDatagramStateChanged(in int state, in int sendPendingCount, in int errorCode); in onSendDatagramStateChanged()
42 void onReceiveDatagramStateChanged(in int state, in int receivePendingCount, in int errorCode); in onReceiveDatagramStateChanged()
DSatelliteTransmissionUpdateCallback.java44 @SatelliteManager.SatelliteError int errorCode); in onSendDatagramStateChanged()
55 @SatelliteManager.SatelliteError int errorCode); in onReceiveDatagramStateChanged()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSmsResponse.java46 public SmsResponse(int messageRef, String ackPdu, int errorCode) { in SmsResponse()
50 public SmsResponse(int messageRef, String ackPdu, int errorCode, long messageId) { in SmsResponse()
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipSessionAdapter.java49 public void onCallChangeFailed(ISipSession session, int errorCode, in onCallChangeFailed()
53 public void onError(ISipSession session, int errorCode, String message) { in onError()
62 public void onRegistrationFailed(ISipSession session, int errorCode, in onRegistrationFailed()
DISipSessionListener.aidl90 void onError(in ISipSession session, int errorCode, String errorMessage); in onError()
99 void onCallChangeFailed(in ISipSession session, int errorCode, in onCallChangeFailed()
124 void onRegistrationFailed(in ISipSession session, int errorCode, in onRegistrationFailed()
DSipSession.java186 public void onError(SipSession session, int errorCode, in onError()
197 public void onCallChangeFailed(SipSession session, int errorCode, in onCallChangeFailed()
225 public void onRegistrationFailed(SipSession session, int errorCode, in onRegistrationFailed()
526 public void onCallChangeFailed(ISipSession session, int errorCode, in createListener()
535 public void onError(ISipSession session, int errorCode, String message) { in createListener()
556 public void onRegistrationFailed(ISipSession session, int errorCode, in createListener()
/frameworks/base/core/java/android/net/metrics/
DDhcpErrorEvent.java49 public final int errorCode; field in DhcpErrorEvent
78 public DhcpErrorEvent(int errorCode) { in DhcpErrorEvent()
110 public static int errorCodeWithOption(int errorCode, int option) { in errorCodeWithOption()
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/
DMDNSFilteredDiscovery.java143 public void onStartDiscoveryFailed(String serviceType, int errorCode) { in onStartDiscoveryFailed()
149 public void onStopDiscoveryFailed(String serviceType, int errorCode) { in onStopDiscoveryFailed()
169 public void onResolveFailed(NsdServiceInfo serviceInfo, int errorCode) { in onServiceFound()
/frameworks/av/services/camera/libcameraservice/utils/
DSessionConfigurationUtils.h38 #define STATUS_ERROR(errorCode, errorString) \ argument
42 #define STATUS_ERROR_FMT(errorCode, errorString, ...) \ argument
/frameworks/base/core/java/android/nfc/tech/
DBasicTagTechnology.java73 int errorCode = mTag.getTagService().connect(mTag.getServiceHandle(), in connect() local
104 int errorCode = mTag.getTagService().reconnect(mTag.getServiceHandle()); in reconnect() local
/frameworks/base/services/core/java/com/android/server/pm/
DUserJourneyLogger.java257 private static int errorToFinishState(@UserJourneyErrorCode int errorCode) { in errorToFinishState()
275 int userType, int userFlags, @UserJourneyErrorCode int errorCode) { in logUserLifecycleJourneyReported()
292 int targetUserId, int userType, int userFlags, int errorCode, long elapsedTime) { in writeUserLifecycleJourneyReported()
306 @UserLifecycleEventState int state, @UserJourneyErrorCode int errorCode) { in logUserLifecycleEventOccurred()
321 int errorCode) { in writeUserLifecycleEventOccurred()
432 UserInfo targetUser, @UserJourney int journey, @UserJourneyErrorCode int errorCode) { in logUserJourneyFinishWithError()
462 UserInfo targetUser, @UserJourney int journey, @UserJourneyErrorCode int errorCode) { in logDelayedUserJourneyFinishWithError()
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
DCameraExceptionHandler.java48 public void onCameraError(int errorCode); in onCameraError()
82 public void onCameraError(final int errorCode) { in onCameraError()
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipSessionListenerProxy.java156 final int errorCode, final String message) { in onCallChangeFailed()
171 public void onError(final ISipSession session, final int errorCode, in onError()
219 final int errorCode, final String message) { in onRegistrationFailed()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
DEuiccCardErrorException.java81 public EuiccCardErrorException(@OperationCode int operationCode, int errorCode) { in EuiccCardErrorException()
95 public EuiccCardErrorException(@OperationCode int operationCode, int errorCode, in EuiccCardErrorException()
/frameworks/native/libs/binder/
DStatus.cpp86 Status::Status(int32_t exceptionCode, int32_t errorCode) in Status()
90 Status::Status(int32_t exceptionCode, int32_t errorCode, const String8& message) in Status()
232 void Status::setServiceSpecificError(int32_t errorCode, const String8& message) { in setServiceSpecificError()

1234567891011