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

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
TestPhoneNotifier.java 51 public void notifyDataConnection(Phone sender, String reason, String apnType) {
54 public void notifyDataConnection(Phone sender, String reason, String apnType,
58 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneNotifier.java 41 public void notifyDataConnection(Phone sender, String reason, String apnType,
44 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType);
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...]
PhoneBase.java 930 public void notifyDataConnection(String reason, String apnType,
932 mNotifier.notifyDataConnection(this, reason, apnType, state);
935 public void notifyDataConnection(String reason, String apnType) {
936 mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType));
941 for (String apnType : types) {
942 mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType));
    [all...]
Phone.java 211 * @param apnType specify for which apn to get connection state info.
213 DataState getDataConnectionState(String apnType);
277 String getActiveApnHost(String apnType);
282 LinkProperties getLinkProperties(String apnType);
287 LinkCapabilities getLinkCapabilities(String apnType);
    [all...]
PhoneProxy.java 289 public PhoneConstants.DataState getDataConnectionState(String apnType) {
290 return mActivePhone.getDataConnectionState(apnType);
334 public String getActiveApnHost(String apnType) {
335 return mActivePhone.getActiveApnHost(apnType);
339 public LinkProperties getLinkProperties(String apnType) {
340 return mActivePhone.getLinkProperties(apnType);
344 public LinkCapabilities getLinkCapabilities(String apnType) {
345 return mActivePhone.getLinkCapabilities(apnType);
893 public boolean isDataConnectivityPossible(String apnType) {
894 return mActivePhone.isDataConnectivityPossible(apnType);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 38 String reason, String apn, String apnType, in LinkProperties linkProperties,
40 void notifyDataConnectionFailed(String reason, String apnType);
  /frameworks/base/core/java/android/net/
MobileDataStateTracker.java 196 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
197 if (!TextUtils.equals(mApnType, apnType)) {
201 log("Broadcast received: " + intent.getAction() + " apnType=" + apnType
215 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
216 if (!TextUtils.equals(apnType, mApnType)) {
222 log("Broadcast received: " + intent.getAction() + " apnType=" + apnType);
298 String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
299 if (!TextUtils.equals(apnType, mApnType))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 203 public boolean isDataPossible(String apnType) {
204 ApnContext apnContext = mApnContexts.get(apnType);
218 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 248 /** Convert an ApnType string to Id (TODO: Use "enumeration" instead of String for ApnType) */
435 String apnType = intent.getStringExtra(INTENT_RECONNECT_ALARM_EXTRA_TYPE);
437 ApnContext apnContext = mApnContexts.get(apnType);
441 " apnType=" + apnType + " apnContext=" + apnContext +
473 String apnType = intent.getStringExtra(INTENT_RESTART_TRYSETUP_ALARM_EXTRA_TYPE);
474 ApnContext apnContext = mApnContexts.get(apnType);
477 " apnType=" + apnType + " apnContext=" + apnContext
    [all...]
ApnContext.java 71 public ApnContext(Context context, String apnType, String logTag) {
73 mApnType = apnType;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 115 public PhoneConstants.DataState getDataConnectionState(String apnType) {
123 } else if (mDcTracker.isApnTypeEnabled(apnType) == false) {
126 switch (mDcTracker.getState(apnType)) {
150 log("getDataConnectionState apnType=" + apnType + " ret=" + ret);
CDMAPhone.java 662 public PhoneConstants.DataState getDataConnectionState(String apnType) {
674 } else if (mDcTracker.isApnTypeEnabled(apnType) == false ||
675 mDcTracker.isApnTypeActive(apnType) == false) {
678 switch (mDcTracker.getState(apnType)) {
702 log("getDataConnectionState apnType=" + apnType + " ret=" + ret);
    [all...]
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 478 String reason, String apn, String apnType, LinkProperties linkProperties,
486 + "' apn='" + apn + "' apnType=" + apnType + " networkType=" + networkType
492 if (!mConnectedApns.contains(apnType)) {
493 mConnectedApns.add(apnType);
500 if (mConnectedApns.remove(apnType)) {
538 apnType, linkProperties, linkCapabilities, roaming);
541 public void notifyDataConnectionFailed(String reason, String apnType) {
559 broadcastDataConnectionFailed(reason, apnType);
703 String reason, String apn, String apnType, LinkProperties linkProperties
    [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Tethering.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 177 public PhoneConstants.DataState getDataConnectionState(String apnType) {
521 public LinkProperties getLinkProperties(String apnType) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 282 public PhoneConstants.DataState getDataConnectionState(String apnType) {
295 } else if (mDcTracker.isApnTypeEnabled(apnType) == false ||
296 mDcTracker.isApnTypeActive(apnType) == false) {
302 switch (mDcTracker.getState(apnType)) {
    [all...]

Completed in 83 milliseconds