Lines Matching defs:apnType

247     protected boolean isDataPossible(String apnType) {
248 ApnContext apnContext = mApnContexts.get(apnType);
262 apnType, possible, dataAllowed, apnTypePossible,
344 protected LinkProperties getLinkProperties(String apnType) {
345 ApnContext apnContext = mApnContexts.get(apnType);
349 if (DBG) log("return link properites for " + apnType);
358 protected LinkCapabilities getLinkCapabilities(String apnType) {
359 ApnContext apnContext = mApnContexts.get(apnType);
363 if (DBG) log("get active pdp is not null, return link Capabilities for " + apnType);
388 public String getActiveApnString(String apnType) {
389 if (DBG) log( "get active apn string for type:" + apnType);
390 ApnContext apnContext = mApnContexts.get(apnType);
401 public boolean isApnTypeEnabled(String apnType) {
402 ApnContext apnContext = mApnContexts.get(apnType);
416 public DctConstants.State getState(String apnType) {
417 ApnContext apnContext = mApnContexts.get(apnType);
478 public synchronized int enableApnType(String apnType) {
479 ApnContext apnContext = mApnContexts.get(apnType);
480 if (apnContext == null || !isApnTypeAvailable(apnType)) {
481 if (DBG) log("enableApnType: " + apnType + " is type not available");
486 if (DBG) log("enableApnType: " + apnType + " mState(" + apnContext.getState() + ")");
492 setEnabled(apnTypeToId(apnType), true);
494 log("enableApnType: new apn request for type " + apnType +
1555 protected void onSetDependencyMet(String apnType, boolean met) {
1557 if (PhoneConstants.APN_TYPE_HIPRI.equals(apnType)) return;
1559 ApnContext apnContext = mApnContexts.get(apnType);
1562 apnType + ", " + met + ")");
1566 if (PhoneConstants.APN_TYPE_DEFAULT.equals(apnType)) {
1609 // Loop through all apnContexts looking for one with a conn that satisfies this apnType
1610 String apnType = apnContext.getApnType();
1613 if (PhoneConstants.APN_TYPE_DUN.equals(apnType)) {
1635 } else if (apnSetting != null && apnSetting.canHandleType(apnType)) {
2364 protected int getApnProfileID(String apnType) {
2365 if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_IMS)) {
2367 } else if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_FOTA)) {
2369 } else if (TextUtils.equals(apnType, PhoneConstants.APN_TYPE_CBS)) {