Lines Matching refs:apn

316     // Return all active apn types
318 if (DBG) log("get all active apn types");
331 // Return active apn of specific apn type
333 if (VDBG) log( "get active apn string for type:" + apnType);
338 return apnSetting.apn;
358 // Return state of specific apn type
368 // Return if apn type is a provisioning apn.
452 log("enableApnType: new apn request for type " + apnType +
476 log("disableApnType: no apn context was found, return APN_REQUEST_FAILED");
489 for (ApnSetting apn : mAllApnSettings) {
490 if (apn.canHandleType(type)) {
624 if (DBG) log("trySetupData new apn context for type:" + type);
698 // Disabled apn's still need avail/unavail notificiations - send them out
708 log("notifyOffApnsOfAvailability skipped apn due to attached && isReady " +
757 if (DBG) log("cleanUpConnection: apn context is null");
789 // to stop using it and let the normal apn list get used to find
807 // apn is connected but no reference to dcac.
916 ApnSetting apn = new ApnSetting(
942 return apn;
1022 if (DBG) log("setupData: return for no apn found!");
1211 + " apn=" + apnContext);
1228 + " apn=" + apnContext);
1570 ApnSetting apn = apnContext.getApnSetting();
1572 log("onDataSetupComplete: success apn=" + (apn == null ? "unknown" : apn.apn));
1574 if (apn != null && apn.proxy != null && apn.proxy.length() != 0) {
1576 String port = apn.port;
1578 ProxyProperties proxy = new ProxyProperties(apn.proxy,
1583 apn.port + "): " + e);
1592 mPreferredApn = apn;
1606 // We do this if this isn't a special provisioning apn or if we've been
1616 log("onDataSetupComplete: successful, BUT send connected to prov apn as"
1623 intent.putExtra(PhoneConstants.DATA_APN_KEY, apnContext.getApnSetting().apn);
1650 ApnSetting apn = apnContext.getApnSetting();
1651 log(String.format("onDataSetupComplete: error apn=%s cause=%s",
1652 (apn == null ? "unknown" : apn.apn), cause));
1896 // query only enabled apn.
1897 // carrier_enabled : 1 means enabled apn, 0 disabled apn.
2025 for (ApnSetting apn : mAllApnSettings) {
2026 if (DBG) log("buildWaitingApns: apn=" + apn);
2027 if (apn.canHandleType(requestedApnType)) {
2028 if (apn.bearer == 0 || apn.bearer == radioTech) {
2029 if (DBG) log("buildWaitingApns: adding apn=" + apn.toString());
2030 apnList.add(apn);
2033 log("buildWaitingApns: bearer:" + apn.bearer + " != "
2086 PREFERAPN_NO_UPDATE_URI, new String[] { "_id", "name", "apn" },
2206 loge("EVENT_CLEAN_UP_CONNECTION request w/o apn context, call super");