Lines Matching refs:apnType

373         String apnType = bundle.getString(INTENT_RECONNECT_ALARM_EXTRA_TYPE);
387 ApnContext apnContext = mApnContexts.get(apnType);
390 log("onDataReconnect: mState=" + mState + " reason=" + reason + " apnType=" + apnType
1033 public LinkProperties getLinkProperties(String apnType) {
1034 ApnContext apnContext = mApnContexts.get(apnType);
1038 if (DBG) log("return link properites for " + apnType);
1046 public NetworkCapabilities getNetworkCapabilities(String apnType) {
1047 ApnContext apnContext = mApnContexts.get(apnType);
1052 log("get active pdp is not null, return NetworkCapabilities for " + apnType);
1076 public String getActiveApnString(String apnType) {
1077 if (VDBG) log( "get active apn string for type:" + apnType);
1078 ApnContext apnContext = mApnContexts.get(apnType);
1095 public DctConstants.State getState(String apnType) {
1098 if (apnSetting != null && apnSetting.canHandleType(apnType)) {
1115 private boolean isProvisioningApn(String apnType) {
1116 ApnContext apnContext = mApnContexts.get(apnType);
2264 String apnType = apnContext.getApnType();
2266 Intent intent = new Intent(INTENT_RECONNECT_ALARM + "." + apnType);
2268 intent.putExtra(INTENT_RECONNECT_ALARM_EXTRA_TYPE, apnType);
2362 private void onSetDependencyMet(String apnType, boolean met) {
2364 if (PhoneConstants.APN_TYPE_HIPRI.equals(apnType)) return;
2366 ApnContext apnContext = mApnContexts.get(apnType);
2369 apnType + ", " + met + ")");
2373 if (PhoneConstants.APN_TYPE_DEFAULT.equals(apnType)) {
2484 String apnType = apnContext.getApnType();
2487 if (PhoneConstants.APN_TYPE_DUN.equals(apnType)) {
2523 } else if (apnSetting != null && apnSetting.canHandleType(apnType)) {
3870 String apnType = (String)bundle.get(DctConstants.APN_TYPE_KEY);
3871 if (apnType != null) {
3872 onSetDependencyMet(apnType, met);
3966 String apnType = null;
3969 apnType = (String)bundle.get(DctConstants.APN_TYPE_KEY);
3971 if (TextUtils.isEmpty(apnType)) {
3972 loge("CMD_IS_PROVISIONING_APN: apnType is empty");
3975 isProvApn = isProvisioningApn(apnType);
4021 private int getApnProfileID(String apnType) {
4022 if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_IMS)) {
4024 } else if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_FOTA)) {
4026 } else if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_CBS)) {
4028 } else if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_IA)) {
4030 } else if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_DUN)) {
4286 public String[] getPcscfAddress(String apnType) {
4290 if(apnType == null){
4291 log("apnType is null, return null");
4295 if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_EMERGENCY)) {
4297 } else if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_IMS)) {
4300 log("apnType is invalid, return null");
4588 String apnType = apnContext.getApnType();
4591 intent.putExtra(TelephonyIntents.EXTRA_APN_TYPE_KEY, apnType);