Searched defs:apnType (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/net/
H A DMobileDataStateTracker.java61 * @param apnType the Phone apnType
486 * @param apnType the type of APN to be enabled or disabled (e.g., mms)
491 private int setEnableApn(String apnType, boolean enable) { argument
506 return mPhoneService.enableApnType(apnType);
508 return mPhoneService.disableApnType(apnType);
516 + " APN type \"" + apnType + "\"");
533 Log.e(TAG, "Error mapping networkType " + netType + " to apnType.");
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaDataConnectionTracker.java952 protected String getInterfaceName(String apnType) { argument
959 protected String getIpAddress(String apnType) { argument
966 protected String getGateway(String apnType) { argument
973 protected String[] getDnsServers(String apnType) { argument
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataConnectionTracker.java414 protected abstract String getInterfaceName(String apnType); argument
416 protected abstract String getIpAddress(String apnType); argument
418 protected abstract String getGateway(String apnType); argument
420 protected abstract String[] getDnsServers(String apnType); argument
H A DPhoneBase.java919 public String getInterfaceName(String apnType) { argument
920 return mDataConnection.getInterfaceName(apnType);
923 public String getIpAddress(String apnType) { argument
924 return mDataConnection.getIpAddress(apnType);
931 public String getGateway(String apnType) { argument
932 return mDataConnection.getGateway(apnType);
935 public String[] getDnsServers(String apnType) { argument
936 return mDataConnection.getDnsServers(apnType);
H A DPhoneProxy.java659 public String getInterfaceName(String apnType) { argument
660 return mActivePhone.getInterfaceName(apnType);
663 public String getIpAddress(String apnType) { argument
664 return mActivePhone.getIpAddress(apnType);
667 public String getGateway(String apnType) { argument
668 return mActivePhone.getGateway(apnType);
671 public String[] getDnsServers(String apnType) { argument
672 return mActivePhone.getDnsServers(apnType);
H A DPhone.java102 static final String DATA_APN_TYPES_KEY = "apnType";
1359 String getInterfaceName(String apnType); argument
1365 String getIpAddress(String apnType); argument
1371 String getGateway(String apnType); argument
1377 public String[] getDnsServers(String apnType); argument
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmDataConnectionTracker.java603 protected String getInterfaceName(String apnType) { argument
605 (apnType == null ||
606 (mActiveApn != null && mActiveApn.canHandleType(apnType)))) {
612 protected String getIpAddress(String apnType) { argument
614 (apnType == null ||
615 (mActiveApn != null && mActiveApn.canHandleType(apnType)))) {
621 public String getGateway(String apnType) { argument
623 (apnType == null ||
624 (mActiveApn != null && mActiveApn.canHandleType(apnType)))) {
630 protected String[] getDnsServers(String apnType) { argument
[all...]

Completed in 89 milliseconds