Home
last modified time | relevance | path

Searched refs:getRepoForSubId (Results 1 – 9 of 9) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
H A DMobileConnectionsRepositoryTest.kt425 val repo1 = underTest.getRepoForSubId(SUB_1_ID)
426 val repo2 = underTest.getRepoForSubId(SUB_1_ID)
532 val repo1 = underTest.getRepoForSubId(SUB_1_ID)
533 val repo2 = underTest.getRepoForSubId(SUB_2_ID)
558 val repo1 = underTest.getRepoForSubId(SUB_1_ID)
559 val repo2 = underTest.getRepoForSubId(SUB_2_ID)
584 val repo1 = underTest.getRepoForSubId(SUB_1_ID)
585 val repo2 = underTest.getRepoForSubId(SUB_2_ID)
600 underTest.getRepoForSubId(SUB_1_ID)
614 underTest.getRepoForSubId(SUB_1_ID)
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/
H A DDemoMobileConnectionsRepository.kt121 .map { getRepoForSubId(it) }
125 getRepoForSubId(activeMobileDataSubscriptionId.value)
171 override fun getRepoForSubId(subId: Int): DemoMobileConnectionRepository {
245 val connection = getRepoForSubId(subId)
269 val connection = getRepoForSubId(subId)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
H A DMobileRepositorySwitcher.kt182 override fun getRepoForSubId(subId: Int): MobileConnectionRepository {
184 return demoMobileConnectionsRepository.getRepoForSubId(subId)
186 return realRepository.getRepoForSubId(subId)
H A DMobileConnectionsRepository.kt74 fun getRepoForSubId(subId: Int): MobileConnectionRepository regex
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
H A DFakeMobileConnectionsRepository.kt76 override fun getRepoForSubId(subId: Int): MobileConnectionRepository {
104 _activeMobileRepository.value = getRepoForSubId(subId)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/
H A DDemoMobileConnectionsRepositoryTest.kt345 infos.map { info -> underTest.getRepoForSubId(info.subscriptionId) }
371 infos.map { info -> underTest.getRepoForSubId(info.subscriptionId) }
429 infos.map { info -> underTest.getRepoForSubId(info.subscriptionId) }
461 infos.map { info -> underTest.getRepoForSubId(info.subscriptionId) }
508 infos.map { info -> underTest.getRepoForSubId(info.subscriptionId) }
H A DDemoMobileConnectionParameterizedTest.kt129 underTest = connectionsRepo.getRepoForSubId(subId)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/
H A DMobileIconsInteractor.kt345 mobileConnectionsRepo.getRepoForSubId(subId),
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
H A DMobileConnectionsRepositoryImpl.kt253 override fun getRepoForSubId(subId: Int): FullMobileConnectionRepository =