Home
last modified time | relevance | path

Searched refs:CallType (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Car/Dialer/src/com/android/car/dialer/livedata/
DCallHistoryLiveData.java19 import static com.android.car.dialer.livedata.CallHistoryLiveData.CallType.CALL_TYPE_ALL;
46 CallType.INCOMING_TYPE,
47 CallType.OUTGOING_TYPE,
48 CallType.MISSED_TYPE,
50 public @interface CallType { annotation in CallHistoryLiveData
/packages/apps/Dialer/java/com/android/dialer/simulator/impl/
DSimulatorSimCallManager.java59 public @interface CallType {} annotation in SimulatorSimCallManager
91 @NonNull Context context, @NonNull String phoneNumber, @CallType int callType) { in addNewOutgoingCall()
99 @CallType int callType, in addNewOutgoingCall()
135 @NonNull Context context, @NonNull String callerId, @CallType int callType) { in addNewIncomingCall()
143 @CallType int callType, in addNewIncomingCall()
245 static Bundle createSimulatorConnectionExtras(@CallType int callType) { in createSimulatorConnectionExtras()
/packages/apps/Car/Dialer/src/com/android/car/dialer/widget/
DCallTypeIconsView.java104 case CallHistoryLiveData.CallType.INCOMING_TYPE: in getCallTypeDrawable()
106 case CallHistoryLiveData.CallType.OUTGOING_TYPE: in getCallTypeDrawable()
108 case CallHistoryLiveData.CallType.MISSED_TYPE: in getCallTypeDrawable()
110 case CallHistoryLiveData.CallType.VOICEMAIL_TYPE: in getCallTypeDrawable()
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/ui/calllog/
DCallHistoryFragmentTest.java81 CallHistoryLiveData.CallType.INCOMING_TYPE); in setup()
83 CallHistoryLiveData.CallType.OUTGOING_TYPE); in setup()
118 CallHistoryLiveData.CallType.INCOMING_TYPE); in testUI()
120 CallHistoryLiveData.CallType.OUTGOING_TYPE); in testUI()
/packages/services/Telecomm/proto/
Dtelecom.proto183 enum CallType { enum
257 optional CallType type = 3;
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/common/entity/
DUiCallLog.java117 return mCallRecords.isEmpty() ? CallHistoryLiveData.CallType.CALL_TYPE_ALL in getMostRecentCallType()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/calllog/
DCallLogViewHolder.java75 if (uiCallLog.getMostRecentCallType() == CallHistoryLiveData.CallType.MISSED_TYPE) { in onBind()