Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/
DCallChipViewModelTest.kt65 repo.setOngoingCallState(OngoingCallModel.NoCall) in chip_noCall_isHidden()
75 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()
121 repo.setOngoingCallState(OngoingCallModel.NoCall) 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.kt63 callRepo.setOngoingCallState(OngoingCallModel.NoCall) in chip_allHidden_hidden()
75 callRepo.setOngoingCallState(OngoingCallModel.NoCall) in chip_screenRecordShow_restHidden_screenRecordShown()
87 callRepo.setOngoingCallState(OngoingCallModel.InCall(startTimeMs = 34, intent = null)) in chip_screenRecordShowAndCallShow_screenRecordShown()
100 callRepo.setOngoingCallState(OngoingCallModel.NoCall) in chip_screenRecordShowAndShareToAppShow_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/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/data/repository/
DOngoingCallRepositoryTest.kt32 underTest.setOngoingCallState(inCallModel) in hasOngoingCall_matchesSet()
36 underTest.setOngoingCallState(OngoingCallModel.NoCall) in hasOngoingCall_matchesSet()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/call/domain/interactor/
DCallChipInteractorTest.kt43 repo.setOngoingCallState(inCall) in ongoingCallState_matchesRepo()
47 repo.setOngoingCallState(noCall) in ongoingCallState_matchesRepo()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/data/repository/
DOngoingCallRepository.kt44 fun setOngoingCallState(state: OngoingCallModel) { in setOngoingCallState() method
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/data/repository/
DStatusBarModeRepositoryImplTest.kt394 ongoingCallRepository.setOngoingCallState( in statusBarMode_ongoingCallAndFullscreen_semiTransparent()
409 ongoingCallRepository.setOngoingCallState( in statusBarMode_ongoingCallButNotFullscreen_matchesAppearance()
425 ongoingCallRepository.setOngoingCallState(OngoingCallModel.NoCall) in statusBarMode_fullscreenButNotOngoingCall_matchesAppearance()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
DOngoingCallController.kt345 ongoingCallRepository.setOngoingCallState(getOngoingCallModel()) in <lambda>()