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;
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.java87 CallHistoryLiveData.CallType.INCOMING_TYPE); in setup()
89 CallHistoryLiveData.CallType.OUTGOING_TYPE); in setup()
137 CallHistoryLiveData.CallType.INCOMING_TYPE); in testCalllogViewHolder()
139 CallHistoryLiveData.CallType.OUTGOING_TYPE); in testCalllogViewHolder()
/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.cpp4674 enum class CallType { GETADDRINFO, GETHOSTBYNAME }; enum
4676 public testing::WithParamInterface<CallType> {
4678 void VerifyQueryHelloExampleComV4(const test::DNSResponder& dns, const CallType calltype, in VerifyQueryHelloExampleComV4()
4680 if (calltype == CallType::GETADDRINFO) { in VerifyQueryHelloExampleComV4()
4685 } else if (calltype == CallType::GETHOSTBYNAME) { in VerifyQueryHelloExampleComV4()
4700 testing::Values(CallType::GETADDRINFO, CallType::GETHOSTBYNAME),
4701 [](const testing::TestParamInfo<CallType>& info) { in __anon6dfd3fcb1602()
4703 case CallType::GETADDRINFO: in __anon6dfd3fcb1602()
4705 case CallType::GETHOSTBYNAME: in __anon6dfd3fcb1602()
/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.java122 return mCallRecords.isEmpty() ? CallHistoryLiveData.CallType.CALL_TYPE_ALL in getMostRecentCallType()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/calllog/
DCallLogViewHolder.java89 if (uiCallLog.getMostRecentCallType() == CallHistoryLiveData.CallType.MISSED_TYPE) { in bind()