Home
last modified time | relevance | path

Searched refs:InteractionErrorCode (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/interactions/
DPhoneNumberInteraction.java122 InteractionErrorCode.CONTACT_NOT_FOUND,
123 InteractionErrorCode.CONTACT_HAS_NO_NUMBER,
124 InteractionErrorCode.USER_LEAVING_ACTIVITY,
125 InteractionErrorCode.OTHER_ERROR
128 public @interface InteractionErrorCode { annotation in PhoneNumberInteraction
143 void interactionError(@InteractionErrorCode int interactionErrorCode); in interactionError()
267 interactionError(InteractionErrorCode.OTHER_ERROR); in onLoadComplete()
275 interactionError(InteractionErrorCode.USER_LEAVING_ACTIVITY); in onLoadComplete()
310 interactionError(InteractionErrorCode.CONTACT_NOT_FOUND); in onLoadComplete()
321 interactionError(InteractionErrorCode.CONTACT_HAS_NO_NUMBER); in onLoadComplete()
[all …]
/packages/apps/Dialer/java/com/android/dialer/shortcuts/
DCallContactActivity.java28 import com.android.dialer.interactions.PhoneNumberInteraction.InteractionErrorCode;
85 public void interactionError(@InteractionErrorCode int interactionErrorCode) { in interactionError()
93 case InteractionErrorCode.CONTACT_NOT_FOUND: in interactionError()
94 case InteractionErrorCode.CONTACT_HAS_NO_NUMBER: in interactionError()
101 case InteractionErrorCode.USER_LEAVING_ACTIVITY: in interactionError()
102 case InteractionErrorCode.OTHER_ERROR: in interactionError()
/packages/apps/Dialer/java/com/android/dialer/app/
DDialtactsActivity.java98 import com.android.dialer.interactions.PhoneNumberInteraction.InteractionErrorCode;
1451 public void interactionError(@InteractionErrorCode int interactionErrorCode) { in interactionError()
1453 case InteractionErrorCode.USER_LEAVING_ACTIVITY: in interactionError()
1456 case InteractionErrorCode.CONTACT_NOT_FOUND: in interactionError()
1457 case InteractionErrorCode.CONTACT_HAS_NO_NUMBER: in interactionError()
1458 case InteractionErrorCode.OTHER_ERROR: in interactionError()