Home
last modified time | relevance | path

Searched refs:mCallType (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Telephony/services/QualifiedNetworksService/src/com/android/telephony/qns/
DAccessNetworkSelectionPolicy.java128 @QnsConstants.QnsCallType private final int mCallType; field in AccessNetworkSelectionPolicy.PreCondition
136 mCallType = callType; in PreCondition()
142 return (mCallType == preCondition.mCallType) in satisfied()
148 return mCallType; in getCallType()
161 return QnsConstants.callTypeToString(mCallType) in toString()
174 return mCallType == that.mCallType in equals()
181 return Objects.hash(mCallType, mPreference, mCoverage); in hashCode()
DQnsTimer.java70 private int mCallType = CALL_TYPE_IDLE; field in QnsTimer
141 if (mCallType == CALL_TYPE_IDLE && type != CALL_TYPE_IDLE) { in updateCallState()
150 mCallType = type; in updateCallState()
151 if (mCallType == CALL_TYPE_IDLE && mIsAlarmRequired) { in updateCallState()
253 (mCallType == CALL_TYPE_IDLE) in onReceive()
276 (mCallType == CALL_TYPE_IDLE) in onReceive()
285 (mCallType == CALL_TYPE_IDLE) in onReceive()
296 (mCallType == CALL_TYPE_IDLE) in onReceive()
305 (mCallType == CALL_TYPE_IDLE) in onReceive()
DQnsCallStatusTracker.java100 private int mCallType = QnsConstants.CALL_TYPE_IDLE; field in QnsCallStatusTracker.ActiveCallTracker
473 if (mCallType != QnsConstants.CALL_TYPE_IDLE) { in callStarted()
474 if (mCallType != callType) { in callStarted()
482 mCallType = callType; in callStarted()
497 Log.d(mLogTag, "callTypeUpdated from " + mCallType + " to " + callType); in callTypeUpdated()
498 mCallType = callType; in callTypeUpdated()
540 Log.d(mLogTag, "callEnded callType: " + mCallType + " netCapa:" in callEnded()
542 mCallType = QnsConstants.CALL_TYPE_IDLE; in callEnded()
565 return this.mCallType; in getCallType()
DAccessNetworkEvaluator.java103 private int mCallType; field in AccessNetworkEvaluator
474 checkVoPs = vopsCheckRequired(cellularAccessNetworkType, coverage, mCallType); in onQnsTelephonyInfoChanged()
685 sendMetricsForCallTypeChanged(mCallType, callType); in onSetCallType()
687 mCallType = callType; in onSetCallType()
688 mRestrictManager.setQnsCallType(mCallType); in onSetCallType()
689 log("onSetCallType CallType:" + mCallType); in onSetCallType()
708 && mCallType == QnsConstants.CALL_TYPE_IDLE)) { in onEmergencyPreferredTransportTypeChanged()
1020 && mCallType == QnsConstants.CALL_TYPE_IDLE in isWfcEnabled()
1027 && mCallType == QnsConstants.CALL_TYPE_VIDEO in isWfcEnabled()
1768 if ((mCallType == QnsConstants.CALL_TYPE_VOICE in evaluateAccessNetworkSelectionPolicy()
[all …]
/packages/modules/AppSearch/service/java/com/android/server/appsearch/util/
DApiCallRecord.java34 @CallStats.CallType private final int mCallType; field in ApiCallRecord
48 mCallType = callStats.getCallType(); in ApiCallRecord()
59 mCallType = CallStats.CALL_TYPE_OPTIMIZE; in ApiCallRecord()
72 return mCallType; in getCallType()
102 switch (mCallType) { in getCallTypeName()
136 return "unknown_type_" + mCallType; in getCallTypeName()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/stats/
DCallStats.java162 @CallType private final int mCallType; field in CallStats
173 mCallType = builder.mCallType; in CallStats()
205 return mCallType; in getCallType()
249 @CallType int mCallType; field in CallStats.Builder
290 mCallType = callType; in setCallType()