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

  /frameworks/base/telephony/java/com/android/internal/telephony/
DefaultPhoneNotifier.java 103 public void notifyDataConnection(Phone sender, String reason, String apnType,
105 doNotifyDataConnection(sender, reason, apnType, state);
108 private void doNotifyDataConnection(Phone sender, String reason, String apnType,
111 // use apnType as the key to which connection we're talking about.
112 // pass apnType back up to fetch particular for this one.
119 linkProperties = sender.getLinkProperties(apnType);
120 linkCapabilities = sender.getLinkCapabilities(apnType);
128 sender.isDataConnectivityPossible(apnType), reason,
129 sender.getActiveApnHost(apnType),
130 apnType,
    [all...]
DataConnectionTracker.java 153 public static final String APN_TYPE_KEY = "apnType";
295 /** Convert an ApnType string to Id (TODO: Use "enumeration" instead of String for ApnType) */
584 public String getActiveApnString(String apnType) {
635 public abstract State getState(String apnType);
650 protected abstract boolean isDataPossible(String apnType);
749 String apnType = (String)bundle.get(APN_TYPE_KEY);
750 if (apnType != null) {
751 onSetDependencyMet(apnType, met);
    [all...]
  /frameworks/base/core/java/android/net/
MobileDataStateTracker.java 183 String apnType = intent.getStringExtra(Phone.DATA_APN_TYPE_KEY);
186 + "mApnType=%s %s received apnType=%s", mApnType,
187 TextUtils.equals(apnType, mApnType) ? "==" : "!=", apnType));
189 if (!TextUtils.equals(apnType, mApnType)) {
267 String apnType = intent.getStringExtra(Phone.DATA_APN_TYPE_KEY);
268 if (!TextUtils.equals(apnType, mApnType)) {
272 "mApnType=%s != received apnType=%s", mApnType, apnType));
520 * @param apnType the type of APN to be enabled or disabled (e.g., mms
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnectionTracker.java 246 protected boolean isDataPossible(String apnType) {
247 ApnContext apnContext = mApnContexts.get(apnType);
261 apnType, possible, dataAllowed, apnTypePossible,
343 protected LinkProperties getLinkProperties(String apnType) {
344 ApnContext apnContext = mApnContexts.get(apnType);
348 if (DBG) log("return link properites for " + apnType);
357 protected LinkCapabilities getLinkCapabilities(String apnType) {
358 ApnContext apnContext = mApnContexts.get(apnType);
362 if (DBG) log("get active pdp is not null, return link Capabilities for " + apnType);
387 public String getActiveApnString(String apnType) {
    [all...]

Completed in 1053 milliseconds