Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/shortcuts/
DCallContactActivity.java28 import com.android.dialer.interactions.PhoneNumberInteraction.InteractionErrorCode;
86 public void interactionError(@InteractionErrorCode int interactionErrorCode) { in interactionError()
94 case InteractionErrorCode.CONTACT_NOT_FOUND: in interactionError()
95 case InteractionErrorCode.CONTACT_HAS_NO_NUMBER: in interactionError()
102 case InteractionErrorCode.USER_LEAVING_ACTIVITY: in interactionError()
103 case InteractionErrorCode.OTHER_ERROR: in interactionError()
/packages/apps/Dialer/java/com/android/dialer/main/impl/
DMainActivity.java28 import com.android.dialer.interactions.PhoneNumberInteraction.InteractionErrorCode;
151 public void interactionError(@InteractionErrorCode int interactionErrorCode) { in interactionError()
153 case InteractionErrorCode.USER_LEAVING_ACTIVITY: in interactionError()
156 case InteractionErrorCode.CONTACT_NOT_FOUND: in interactionError()
157 case InteractionErrorCode.CONTACT_HAS_NO_NUMBER: in interactionError()
158 case InteractionErrorCode.OTHER_ERROR: in interactionError()
/packages/apps/Dialer/java/com/android/dialer/interactions/
DPhoneNumberInteraction.java127 InteractionErrorCode.CONTACT_NOT_FOUND,
128 InteractionErrorCode.CONTACT_HAS_NO_NUMBER,
129 InteractionErrorCode.USER_LEAVING_ACTIVITY,
130 InteractionErrorCode.OTHER_ERROR
133 public @interface InteractionErrorCode { annotation in PhoneNumberInteraction
148 void interactionError(@InteractionErrorCode int interactionErrorCode); in interactionError()
276 interactionError(InteractionErrorCode.OTHER_ERROR); in onLoadComplete()
284 interactionError(InteractionErrorCode.USER_LEAVING_ACTIVITY); in onLoadComplete()
319 interactionError(InteractionErrorCode.CONTACT_NOT_FOUND); in onLoadComplete()
330 interactionError(InteractionErrorCode.CONTACT_HAS_NO_NUMBER); in onLoadComplete()
[all …]
/packages/apps/Dialer/java/com/android/dialer/app/
DDialtactsActivity.java108 import com.android.dialer.interactions.PhoneNumberInteraction.InteractionErrorCode;
1507 public void interactionError(@InteractionErrorCode int interactionErrorCode) { in interactionError()
1509 case InteractionErrorCode.USER_LEAVING_ACTIVITY: in interactionError()
1512 case InteractionErrorCode.CONTACT_NOT_FOUND: in interactionError()
1513 case InteractionErrorCode.CONTACT_HAS_NO_NUMBER: in interactionError()
1514 case InteractionErrorCode.OTHER_ERROR: in interactionError()