Home
last modified time | relevance | path

Searched refs:mLastQnsTelephonyInfo (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Telephony/services/QualifiedNetworksService/src/com/android/telephony/qns/
DQnsTelephonyListener.java81 protected QnsTelephonyInfo mLastQnsTelephonyInfo = new QnsTelephonyInfo(); field in QnsTelephonyListener
196 return mLastQnsTelephonyInfo; in getLastQnsTelephonyInfo()
488 mLastQnsTelephonyInfo = new QnsTelephonyInfo(); in cleanupQnsTelephonyListenerSettings()
497 QnsTelephonyInfo newInfo = new QnsTelephonyInfo(mLastQnsTelephonyInfo); in onServiceStateChanged()
574 if (!newInfo.equals(mLastQnsTelephonyInfo)) { in onServiceStateChanged()
576 if (newInfo.getVoiceNetworkType() != mLastQnsTelephonyInfo.getVoiceNetworkType()) { in onServiceStateChanged()
579 if (newInfo.getDataNetworkType() != mLastQnsTelephonyInfo.getDataNetworkType()) { in onServiceStateChanged()
582 if (newInfo.getDataRegState() != mLastQnsTelephonyInfo.getDataRegState()) { in onServiceStateChanged()
585 if (newInfo.isCoverage() != mLastQnsTelephonyInfo.isCoverage()) { in onServiceStateChanged()
588 if (newInfo.isCellularAvailable() != mLastQnsTelephonyInfo.isCellularAvailable()) { in onServiceStateChanged()
[all …]
DCellularQualityMonitor.java550 QnsTelephonyListener.QnsTelephonyInfo mLastQnsTelephonyInfo = null; field in CellularQualityMonitor.CellularEventsHandler
553 if (mLastQnsTelephonyInfo == null in onQnsTelephonyInfoChanged()
554 || mLastQnsTelephonyInfo.getDataNetworkType() != info.getDataNetworkType() in onQnsTelephonyInfoChanged()
555 || mLastQnsTelephonyInfo.getDataRegState() != info.getDataRegState() in onQnsTelephonyInfoChanged()
556 || mLastQnsTelephonyInfo.isCellularAvailable() != info.isCellularAvailable()) { in onQnsTelephonyInfoChanged()
560 mLastQnsTelephonyInfo = info; in onQnsTelephonyInfoChanged()