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 106 public void notifyDataConnection(Phone sender, String reason, String apnType,
108 doNotifyDataConnection(sender, reason, apnType, state);
111 private void doNotifyDataConnection(Phone sender, String reason, String apnType,
114 // use apnType as the key to which connection we're talking about.
115 // pass apnType back up to fetch particular for this one.
122 linkProperties = sender.getLinkProperties(apnType);
123 linkCapabilities = sender.getLinkCapabilities(apnType);
131 sender.isDataConnectivityPossible(apnType), reason,
132 sender.getActiveApnHost(apnType),
133 apnType,
    [all...]
DataConnectionTracker.java 229 /** Convert an ApnType string to Id (TODO: Use "enumeration" instead of String for ApnType) */
533 public String getActiveApnString(String apnType) {
581 public abstract DctConstants.State getState(String apnType);
596 protected abstract boolean isDataPossible(String apnType);
692 String apnType = (String)bundle.get(DctConstants.APN_TYPE_KEY);
693 if (apnType != null) {
694 onSetDependencyMet(apnType, met);
785 protected LinkProperties getLinkProperties(String apnType) {
786 int id = apnTypeToId(apnType);
    [all...]
  /frameworks/base/core/java/android/net/
MobileDataStateTracker.java 178 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
181 + "mApnType=%s %s received apnType=%s", mApnType,
182 TextUtils.equals(apnType, mApnType) ? "==" : "!=", apnType));
184 if (!TextUtils.equals(apnType, mApnType)) {
272 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
273 if (!TextUtils.equals(apnType, mApnType)) {
277 "mApnType=%s != received apnType=%s", mApnType, apnType));
536 * @param apnType the type of APN to be enabled or disabled (e.g., mms
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmDataConnectionTracker.java 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) {
    [all...]

Completed in 56 milliseconds