Home
last modified time | relevance | path

Searched refs:mobileDataEnabledFlow (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/tests/spa_unit/src/com/android/settings/network/
DMobileDataEnabledFlowTest.kt40 val flow = context.mobileDataEnabledFlow(SubscriptionManager.INVALID_SUBSCRIPTION_ID) in mobileDataEnabledFlow_notified()
50 val flow = context.mobileDataEnabledFlow(SubscriptionManager.INVALID_SUBSCRIPTION_ID) in <lambda>()
65 context.mobileDataEnabledFlow(SUB_ID).toListWithTimeout() in <lambda>()
80 context.mobileDataEnabledFlow(SUB_ID).toListWithTimeout() in <lambda>()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DMmsMessagePreferenceController.kt25 import com.android.settings.network.mobileDataEnabledFlow in <lambda>()
74 mContext.mobileDataEnabledFlow(mSubId), in onViewCreated()
DTelephonyRepository.kt24 import com.android.settings.network.mobileDataEnabledFlow
72 return context.mobileDataEnabledFlow(subId) in isDataEnabledFlow()
/packages/apps/Settings/src/com/android/settings/network/telephony/wificalling/
DCrossSimCallingViewModel.kt27 import com.android.settings.network.mobileDataEnabledFlow in <lambda>()
84 application.mobileDataEnabledFlow(subId = subId, sendInitialValue = false) in <lambda>()
/packages/apps/Settings/src/com/android/settings/network/
DMobileDataEnabledFlow.kt31 fun Context.mobileDataEnabledFlow(subId: Int, sendInitialValue: Boolean = true): Flow<Unit> { in Context() method