Home
last modified time | relevance | path

Searched refs:CallType (Results 1 – 10 of 10) 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;
48 CallType.INCOMING_TYPE,
49 CallType.OUTGOING_TYPE,
50 CallType.MISSED_TYPE,
52 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/instrutests/src/com/android/car/dialer/integration/
DRecentCallLogTest.java112 CallHistoryLiveData.CallType.INCOMING_TYPE); in setup()
114 CallHistoryLiveData.CallType.OUTGOING_TYPE); in setup()
142 new CallTypeIconMatcher(0, CallHistoryLiveData.CallType.INCOMING_TYPE))) in verifyRecentCallScreen()
144 new CallTypeIconMatcher(1, CallHistoryLiveData.CallType.OUTGOING_TYPE))); in verifyRecentCallScreen()
/packages/modules/DnsResolver/tests/
Dgolddata.proto21 enum CallType { enum
170 CallType call = 1;
Dresolv_gold_test.cpp230 case android::net::CallType::CALL_GETADDRINFO: in VerifyResolver()
236 case android::net::CallType::CALL_GETHOSTBYNAME: in VerifyResolver()
Dresolv_integration_test.cpp5485 enum class CallType { GETADDRINFO, GETHOSTBYNAME }; enum
5487 public testing::WithParamInterface<CallType> {
5489 void VerifyQueryHelloExampleComV4(const test::DNSResponder& dns, const CallType calltype, in VerifyQueryHelloExampleComV4()
5491 if (calltype == CallType::GETADDRINFO) { in VerifyQueryHelloExampleComV4()
5496 } else if (calltype == CallType::GETHOSTBYNAME) { in VerifyQueryHelloExampleComV4()
5511 testing::Values(CallType::GETADDRINFO, CallType::GETHOSTBYNAME),
5512 [](const testing::TestParamInfo<CallType>& info) { in __anonccf6c6f21902()
5514 case CallType::GETADDRINFO: in __anonccf6c6f21902()
5516 case CallType::GETHOSTBYNAME: in __anonccf6c6f21902()
/packages/services/Telecomm/proto/
Dtelecom.proto193 enum CallType { enum
267 optional CallType type = 3;
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/common/entity/
DUiCallLog.java162 return mCallRecords.isEmpty() ? CallHistoryLiveData.CallType.CALL_TYPE_ALL in getMostRecentCallType()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/calllog/
DCallLogViewHolder.java101 if (uiCallLog.getMostRecentCallType() == CallHistoryLiveData.CallType.MISSED_TYPE) { in bind()