Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/connectivity/
H A DSignalCallback.kt151 @JvmField val qsDescription: CharSequence?,
166 .append(",description=").append(qsDescription)
H A DMobileSignalController.java395 CharSequence qsDescription = null; in getQsInfo() local
401 return new QsInfo(qsTypeIcon, qsIcon, qsDescription); in getQsInfo()
412 qsDescription = mCurrentState.networkName; in getQsInfo()
416 return new QsInfo(qsTypeIcon, qsIcon, qsDescription); in getQsInfo()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DInternetTile.java283 mCellularInfo.mDataSubscriptionName = indicators.qsDescription == null in setMobileDataIndicators()
284 ? mController.getMobileDataNetworkName() : indicators.qsDescription; in setMobileDataIndicators()
285 mCellularInfo.mDataContentDescription = indicators.qsDescription != null in setMobileDataIndicators()
H A DCellularTile.java279 mInfo.dataContentDescription = indicators.qsDescription != null in setMobileDataIndicators()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/connectivity/
H A DCallbackHandlerTest.java140 assertEquals(description, expected.qsDescription); in testSignalCallback_setMobileDataIndicators()