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.java125 InteractionErrorCode.CONTACT_NOT_FOUND,
126 InteractionErrorCode.CONTACT_HAS_NO_NUMBER,
127 InteractionErrorCode.USER_LEAVING_ACTIVITY,
128 InteractionErrorCode.OTHER_ERROR
131 public @interface InteractionErrorCode { annotation in PhoneNumberInteraction
146 void interactionError(@InteractionErrorCode int interactionErrorCode); in interactionError()
270 interactionError(InteractionErrorCode.OTHER_ERROR); in onLoadComplete()
278 interactionError(InteractionErrorCode.USER_LEAVING_ACTIVITY); in onLoadComplete()
313 interactionError(InteractionErrorCode.CONTACT_NOT_FOUND); in onLoadComplete()
324 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.java103 import com.android.dialer.interactions.PhoneNumberInteraction.InteractionErrorCode;
1536 public void interactionError(@InteractionErrorCode int interactionErrorCode) { in interactionError()
1538 case InteractionErrorCode.USER_LEAVING_ACTIVITY: in interactionError()
1541 case InteractionErrorCode.CONTACT_NOT_FOUND: in interactionError()
1542 case InteractionErrorCode.CONTACT_HAS_NO_NUMBER: in interactionError()
1543 case InteractionErrorCode.OTHER_ERROR: in interactionError()