Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/mobile/dataservice/
DMobileNetworkInfoEntity.java32 boolean isTdscdmaSupported, boolean activeNetworkIsCellular, in MobileNetworkInfoEntity() argument
43 this.activeNetworkIsCellular = activeNetworkIsCellular; in MobileNetworkInfoEntity()
79 public boolean activeNetworkIsCellular; field in MobileNetworkInfoEntity
99 result = 31 * result + Boolean.hashCode(activeNetworkIsCellular); in hashCode()
124 && activeNetworkIsCellular == info.activeNetworkIsCellular in equals()
150 .append(activeNetworkIsCellular) in toString()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/
DInternetDialogDelegate.java361 setMobileDataLayout(mInternetDialogController.activeNetworkIsCellular(), in updateDialog()
444 private void setMobileDataLayout(boolean activeNetworkIsCellular, in setMobileDataLayout() argument
448 setMobileDataLayout(mDialog, activeNetworkIsCellular, isCarrierNetworkActive); in setMobileDataLayout()
452 private void setMobileDataLayout(SystemUIDialog dialog, boolean activeNetworkIsCellular, in setMobileDataLayout() argument
454 boolean isNetworkConnected = activeNetworkIsCellular || isCarrierNetworkActive; in setMobileDataLayout()
DInternetDialogController.java448 if (!activeNetworkIsCellular()) { in getSubtitleText()
511 if (activeNetworkIsCellular() || isCarrierNetworkActive) { in getSignalStrengthDrawable()
737 if (activeNetworkIsCellular() || isCarrierNetworkActive()) {
834 if (activeNetworkIsCellular()) {
1035 boolean activeNetworkIsCellular() {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/dialog/
DInternetDialogDelegateTest.java297 doReturn(false).when(mInternetDialogController).activeNetworkIsCellular(); in updateDialog_apmOnAndWifiOnHasCarrierNetwork_showAirplaneSummary()
310 doReturn(false).when(mInternetDialogController).activeNetworkIsCellular(); in updateDialog_apmOffAndWifiOnHasCarrierNetwork_notShowApmSummary()
367 doReturn(false).when(mInternetDialogController).activeNetworkIsCellular(); in updateDialog_wifiOnAndHasInternetWifi_showConnectedWifi()
381 doReturn(false).when(mInternetDialogController).activeNetworkIsCellular(); in updateDialog_wifiOnAndNoConnectedWifi_hideConnectedWifi()
DInternetDialogDelegateControllerTest.java910 doReturn(true).when(spyController).activeNetworkIsCellular(); in getMobileNetworkSummary()
924 doReturn(true).when(spyController).activeNetworkIsCellular(); in getMobileNetworkSummary_flagOff()
1026 doReturn(true).when(spyController).activeNetworkIsCellular(); in getMobileNetworkSummary_withCarrierNetworkChange()