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 217 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
218 if (!TextUtils.equals(mApnType, apnType)) {
222 log("Broadcast received: " + intent.getAction() + " apnType=" + apnType
236 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
239 + "mApnType=%s %s received apnType=%s", mApnType,
240 TextUtils.equals(apnType, mApnType) ? "==" : "!=", apnType));
242 if (!TextUtils.equals(apnType, mApnType)) {
248 log("Broadcast received: " + intent.getAction() + " apnType=" + apnType)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 208 public boolean isDataPossible(String apnType) {
209 ApnContext apnContext = mApnContexts.get(apnType);
223 apnType, possible, dataAllowed, apnTypePossible,
290 public LinkProperties getLinkProperties(String apnType) {
291 ApnContext apnContext = mApnContexts.get(apnType);
295 if (DBG) log("return link properites for " + apnType);
304 public LinkCapabilities getLinkCapabilities(String apnType) {
305 ApnContext apnContext = mApnContexts.get(apnType);
309 if (DBG) log("get active pdp is not null, return link Capabilities for " + apnType);
334 public String getActiveApnString(String apnType) {
    [all...]
DcTrackerBase.java 251 /** Convert an ApnType string to Id (TODO: Use "enumeration" instead of String for ApnType) */
470 String apnType = intent.getStringExtra(INTENT_RECONNECT_ALARM_EXTRA_TYPE);
472 ApnContext apnContext = mApnContexts.get(apnType);
476 " apnType=" + apnType + " apnContext=" + apnContext +
508 String apnType = intent.getStringExtra(INTENT_RESTART_TRYSETUP_ALARM_EXTRA_TYPE);
509 ApnContext apnContext = mApnContexts.get(apnType);
512 " apnType=" + apnType + " apnContext=" + apnContext
    [all...]

Completed in 938 milliseconds