HomeSort by relevance Sort by last modified time
    Searched defs:apnType (Results 1 - 4 of 4) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DefaultPhoneNotifier.java 110 public void notifyDataConnection(Phone sender, String reason, String apnType,
112 doNotifyDataConnection(sender, reason, apnType, state);
115 private void doNotifyDataConnection(Phone sender, String reason, String apnType,
118 // use apnType as the key to which connection we're talking about.
119 // pass apnType back up to fetch particular for this one.
126 linkProperties = sender.getLinkProperties(apnType);
127 linkCapabilities = sender.getLinkCapabilities(apnType);
135 sender.isDataConnectivityPossible(apnType), reason,
136 sender.getActiveApnHost(apnType),
137 apnType,
    [all...]
  /frameworks/base/core/java/android/net/
MobileDataStateTracker.java 176 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
179 + "mApnType=%s %s received apnType=%s", mApnType,
180 TextUtils.equals(apnType, mApnType) ? "==" : "!=", apnType));
182 if (!TextUtils.equals(apnType, mApnType)) {
270 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
271 if (!TextUtils.equals(apnType, mApnType)) {
275 "mApnType=%s != received apnType=%s", mApnType, apnType));
550 * @param apnType the type of APN to be enabled or disabled (e.g., mms
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 200 public boolean isDataPossible(String apnType) {
201 ApnContext apnContext = mApnContexts.get(apnType);
215 apnType, possible, dataAllowed, apnTypePossible,
287 public LinkProperties getLinkProperties(String apnType) {
288 ApnContext apnContext = mApnContexts.get(apnType);
292 if (DBG) log("return link properites for " + apnType);
301 public LinkCapabilities getLinkCapabilities(String apnType) {
302 ApnContext apnContext = mApnContexts.get(apnType);
306 if (DBG) log("get active pdp is not null, return link Capabilities for " + apnType);
331 public String getActiveApnString(String apnType) {
    [all...]
DcTrackerBase.java 243 /** Convert an ApnType string to Id (TODO: Use "enumeration" instead of String for ApnType) */
422 String apnType = intent.getStringExtra(INTENT_RECONNECT_ALARM_EXTRA_TYPE);
424 ApnContext apnContext = mApnContexts.get(apnType);
428 " apnType=" + apnType + " apnContext=" + apnContext +
460 String apnType = intent.getStringExtra(INTENT_RESTART_TRYSETUP_ALARM_EXTRA_TYPE);
461 ApnContext apnContext = mApnContexts.get(apnType);
464 " apnType=" + apnType + " apnContext=" + apnContext
    [all...]

Completed in 24 milliseconds