Home
last modified time | relevance | path

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

/aosp12/frameworks/base/telephony/java/android/telephony/data/
H A DThrottleStatus.java84 private final @Annotation.ApnType int mApnType; field in ThrottleStatus
115 return mApnType; in getApnType()
163 mApnType = apnTypes; in ThrottleStatus()
172 mApnType = source.readInt(); in ThrottleStatus()
182 dest.writeInt(mApnType); in writeToParcel()
208 return Objects.hash(mSlotIndex, mApnType, mRetryType, mThrottleType, in hashCode()
219 && this.mApnType == other.mApnType in equals()
234 + ", mApnType=" + ApnSetting.getApnTypeString(mApnType) in toString()
260 private @Annotation.ApnType int mApnType; field in ThrottleStatus.Builder
310 this.mApnType = apnType; in setApnType()
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataEnabledOverride.java79 private final @ApnType int mApnType; field in DataEnabledOverride.OverrideRule
101 mApnType = ApnSetting.getApnTypesBitmaskFromString(tokens[0]); in OverrideRule()
102 if (mApnType == ApnSetting.TYPE_NONE) { in OverrideRule()
116 mApnType = apnType; in OverrideRule()
128 return (mApnType == apnType || mApnType == ApnSetting.TYPE_ALL) in isSatisfiedByConditions()
134 return ApnSetting.getApnTypeString(mApnType) + "=" + mRequiredConditions; in toString()
142 return mApnType == that.mApnType in equals()
148 return Objects.hash(mApnType, mRequiredConditions); in hashCode()
H A DApnContext.java59 private final String mApnType; field in ApnContext
120 mApnType = apnType; in ApnContext()
138 return mApnType; in getApnType()
146 return ApnSetting.getApnTypesBitmaskFromString(mApnType); in getApnTypeBitmask()
421 mDcTracker.enableApn(ApnSetting.getApnTypesBitmaskFromString(mApnType), type, in requestNetwork()
445 mDcTracker.disableApn(ApnSetting.getApnTypesBitmaskFromString(mApnType), type); in releaseNetwork()
621 return "{mApnType=" + mApnType + " mState=" + getState() + " mWaitingApns={" in toString()
629 Rlog.d(LOG_TAG, "[ApnContext:" + mApnType + "] " + s); in log()
/aosp12/packages/apps/Settings/src/com/android/settings/network/apn/
H A DApnEditor.java114 EditTextPreference mApnType; field in ApnEditor
460 return mApnType; in getPreferenceFromFieldName()
510 mApnType.setEnabled(false); in disableAllFields()
541 mApnType.setText(mApnData.getString(TYPE_INDEX)); in fillUI()
615 mApnType.setSummary(checkNull(mApnType.getText())); in fillUI()
764 mApnType.setSummary(data); in onPreferenceChange()
1239 String userEnteredApnType = mApnType.getText(); in getUserEnteredApnType()
1288 mApnType = (EditTextPreference) findPreference("apn_type"); in initApnEditorUi()
1341 if (TextUtils.isEmpty(mApnType.getText()) && !ArrayUtils.isEmpty(mDefaultApnTypes)) { in setCarrierCustomizedConfigToUi()
1343 mApnType.setText(value); in setCarrierCustomizedConfigToUi()
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRetryManager.java236 private String mApnType; field in RetryManager
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/network/apn/
H A DApnEditorTest.java540 mApnEditorUT.mApnType = new EditTextPreference(context); in setMockPreference()