Home
last modified time | relevance | path

Searched refs:InCall (Results 1 – 18 of 18) sorted by relevance

/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/Phone/Settings/
Ddevice_for_product_strategy_dtmf.pfw21 TelephonyMode IsNot InCall
49 TelephonyMode IsNot InCall
77 TelephonyMode IsNot InCall
105 TelephonyMode IsNot InCall
133 TelephonyMode IsNot InCall
163 TelephonyMode Is InCall
192 TelephonyMode Is InCall
223 TelephonyMode Is InCall
230 TelephonyMode IsNot InCall
261 TelephonyMode Is InCall
[all …]
Ddevice_for_product_strategy_sonification.pfw32 TelephonyMode IsNot InCall
40 TelephonyMode Is InCall
58 TelephonyMode IsNot InCall
84 TelephonyMode IsNot InCall
110 TelephonyMode IsNot InCall
136 TelephonyMode Is InCall
163 TelephonyMode Is InCall
190 TelephonyMode Is InCall
219 TelephonyMode IsNot InCall
227 TelephonyMode Is InCall
[all …]
Ddevice_for_product_strategy_sonification_respectful.pfw38 TelephonyMode IsNot InCall
52 TelephonyMode IsNot InCall
60 TelephonyMode Is InCall
79 TelephonyMode IsNot InCall
106 TelephonyMode IsNot InCall
133 TelephonyMode IsNot InCall
160 TelephonyMode Is InCall
187 TelephonyMode Is InCall
214 TelephonyMode Is InCall
243 TelephonyMode Is InCall
[all …]
Ddevice_for_product_strategy_accessibility.pfw30 TelephonyMode IsNot InCall
58 TelephonyMode IsNot InCall
86 TelephonyMode IsNot InCall
115 TelephonyMode IsNot InCall
142 TelephonyMode IsNot InCall
171 TelephonyMode Is InCall
200 TelephonyMode Is InCall
229 TelephonyMode Is InCall
260 TelephonyMode Is InCall
267 TelephonyMode IsNot InCall
[all …]
Ddevice_for_product_strategy_phone.pfw95 TelephonyMode IsNot InCall
125 TelephonyMode IsNot InCall
155 TelephonyMode IsNot InCall
272 TelephonyMode IsNot InCall
301 TelephonyMode IsNot InCall
328 TelephonyMode IsNot InCall
356 TelephonyMode IsNot InCall
384 TelephonyMode IsNot InCall
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/
DCallChipViewModelTest.kt75 repo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 345, intent = null)) in chip_inCall_isShown()
88 repo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 1000, intent = null)) in chip_inCall_startTimeConvertedToElapsedRealtime()
102 repo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 1000, intent = null)) in chip_inCall_iconIsPhone()
116 repo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 1000, intent = null)) in chip_resetsCorrectly()
129 repo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 102_000, intent = null)) in chip_resetsCorrectly()
139 repo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 1000, intent = null)) in chip_inCall_nullIntent_clickListenerDoesNothing()
153 repo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 1000, intent = intent)) in chip_inCall_validIntent_clickListenerLaunchesIntent()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/ui/viewmodel/
DOngoingActivityChipsViewModelTest.kt87 callRepo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 34, intent = null)) in chip_screenRecordShowAndCallShow_screenRecordShown()
113 callRepo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 34, intent = null)) in chip_shareToAppShowAndCallShow_shareToAppShown()
127 callRepo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 34, intent = null)) in chip_screenRecordAndShareToAppAndCastToOtherHideAndCallShown_callShown()
138 callRepo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 34, intent = null)) in chip_higherPriorityChipAdded_lowerPriorityChipReplaced()
171 callRepo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 34, intent = null)) in chip_highestPriorityChipRemoved_showsNextPriorityChip()
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/Settings/
Dvolumes.pfw19 conf: InCall
21 TelephonyMode Is InCall
Dstrategy_for_usage.pfw33 TelephonyMode Is InCall
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/shared/model/
DOngoingCallModel.kt35 data class InCall(val startTimeMs: Long, val intent: PendingIntent?) : OngoingCallModel class
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/data/repository/
DOngoingCallRepositoryTest.kt31 val inCallModel = OngoingCallModel.InCall(startTimeMs = 654, intent = null) in hasOngoingCall_matchesSet()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/call/domain/interactor/
DCallChipInteractorTest.kt42 val inCall = OngoingCallModel.InCall(startTimeMs = 1000, intent = null) in ongoingCallState_matchesRepo()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/
DOngoingCallControllerTest.kt158 assertThat(repoState).isInstanceOf(OngoingCallModel.InCall::class.java) in onEntryUpdated_isOngoingCallNotif_listenerAndRepoNotified()
159 assertThat((repoState as OngoingCallModel.InCall).startTimeMs).isEqualTo(567) in onEntryUpdated_isOngoingCallNotif_listenerAndRepoNotified()
190 .isInstanceOf(OngoingCallModel.InCall::class.java) in onEntryUpdated_ongoingCallNotifThenScreeningCallNotif_repoUpdated()
333 .isInstanceOf(OngoingCallModel.InCall::class.java) in onEntryRemoved_callNotifAddedThenRemoved_repoUpdated()
402 .isInstanceOf(OngoingCallModel.InCall::class.java) in onEntryRemoved_notifKeyDoesNotMatchOngoingCallNotif_repoNotUpdated()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/
DCallChipViewModel.kt54 is OngoingCallModel.InCall -> { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/data/repository/
DStatusBarModeRepositoryImplTest.kt395 OngoingCallModel.InCall(startTimeMs = 34, intent = null) in statusBarMode_ongoingCallAndFullscreen_semiTransparent()
410 OngoingCallModel.InCall(startTimeMs = 789, intent = null) in statusBarMode_ongoingCallButNotFullscreen_matchesAppearance()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/data/repository/
DStatusBarModePerDisplayRepository.kt238 hasOngoingCall = ongoingCallState is OngoingCallModel.InCall, in isTransientShown()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
DOngoingCallController.kt192 return OngoingCallModel.InCall( in <lambda>()
/frameworks/proto_logging/stats/enums/telecomm/
Denums.proto100 * to the InCall UI for calls where disconnection has been initiated by the user but the