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

/frameworks/base/telephony/java/android/telephony/
H A DPreciseDataConnectionState.java57 String apnType, String apn, String reason,
61 mAPNType = apnType;
56 PreciseDataConnectionState(int state, int networkType, String apnType, String apn, String reason, LinkProperties linkProperties, String failCause) argument
H A DTelephonyManager.java4619 * @param apnType the apnType, "ims" for IMS APN, "emergency" for EMERGENCY APN
4623 public String[] getPcscfAddress(String apnType) { argument
4628 return telephony.getPcscfAddress(apnType, getOpPackageName());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneNotifier.java42 public void notifyDataConnection(Phone sender, String reason, String apnType, argument
45 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType); argument
57 public void notifyPreciseDataConnectionFailed(Phone sender, String reason, String apnType, argument
H A DDefaultPhoneNotifier.java153 public void notifyDataConnection(Phone sender, String reason, String apnType, argument
155 doNotifyDataConnection(sender, reason, apnType, state);
158 private void doNotifyDataConnection(Phone sender, String reason, String apnType, argument
165 // use apnType as the key to which connection we're talking about.
166 // pass apnType back up to fetch particular for this one.
173 linkProperties = sender.getLinkProperties(apnType);
174 networkCapabilities = sender.getNetworkCapabilities(apnType);
184 sender.getActiveApnHost(apnType),
185 apnType,
197 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType) { argument
272 notifyPreciseDataConnectionFailed(Phone sender, String reason, String apnType, String apn, String failCause) argument
[all...]
H A DRetryManager.java227 * @param apnType APN type
229 public RetryManager(Phone phone, String apnType) { argument
231 mApnType = apnType;
361 String apnType = splitStr[0].trim();
363 if (apnType.equals(mApnType)) {
368 } else if (apnType.equals(OTHERS_APN_TYPE)) {
H A DPhoneInternalInterface.java220 * @param apnType specify for which apn to get connection state info.
222 DataState getDataConnectionState(String apnType); argument
H A DGsmCdmaPhone.java499 public PhoneConstants.DataState getDataConnectionState(String apnType) { argument
509 (isPhoneTypeGsm() && !apnType.equals(PhoneConstants.APN_TYPE_EMERGENCY)))) {
518 switch (mDcTracker.getState(apnType)) {
542 logd("getDataConnectionState apnType=" + apnType + " ret=" + ret);
H A DPhone.java2144 public void notifyDataConnection(String reason, String apnType, argument
2146 mNotifier.notifyDataConnection(this, reason, apnType, state);
2149 public void notifyDataConnection(String reason, String apnType) { argument
2150 mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType));
2155 for (String apnType : types) {
2156 mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType));
2778 public String getActiveApnHost(String apnType) { argument
2779 return mDcTracker.getActiveApnString(apnType);
2785 getLinkProperties(String apnType) argument
2792 getNetworkCapabilities(String apnType) argument
2940 notifyDataConnectionFailed(String reason, String apnType) argument
2944 notifyPreciseDataConnectionFailed(String reason, String apnType, String apn, String failCause) argument
2994 getPcscfAddress(String apnType) argument
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DDcTrackerMock.java64 public LinkProperties getLinkProperties(String apnType) { argument
68 public NetworkCapabilities getNetworkCapabilities(String apnType) { argument
76 public String getActiveApnString(String apnType) { argument
80 public DctConstants.State getState(String apnType) { argument
140 public String[] getPcscfAddress(String apnType) { argument
H A DTelephonyRegistryMock.java235 String reason, String apn, String apnType, LinkProperties linkProperties,
242 boolean isDataConnectivityPossible, String reason, String apn, String apnType,
249 public void notifyDataConnectionFailed(String reason, String apnType) { argument
254 public void notifyDataConnectionFailedForSubscriber(int subId, String reason, String apnType) { argument
290 public void notifyPreciseDataConnectionFailed(String reason, String apnType, String apn, argument
234 notifyDataConnection(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
241 notifyDataConnectionForSubscriber(int subId, int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
H A DPhoneMock.java560 public void notifyDataConnection(String reason, String apnType, argument
565 public void notifyDataConnection(String reason, String apnType) { argument
793 public String getActiveApnHost(String apnType) { argument
797 public LinkProperties getLinkProperties(String apnType) { argument
801 public NetworkCapabilities getNetworkCapabilities(String apnType) { argument
841 public void notifyDataConnectionFailed(String reason, String apnType) { argument
845 public void notifyPreciseDataConnectionFailed(String reason, String apnType, String apn, argument
866 public String[] getPcscfAddress(String apnType) { argument
1081 public DataState getDataConnectionState(String apnType) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DApnContext.java105 * @param apnType APN type (e.g. default, supl, mms, etc...)
110 public ApnContext(Phone phone, String apnType, String logTag, NetworkConfig config, argument
113 mApnType = apnType;
121 mRetryManager = new RetryManager(phone, apnType);
H A DDcTracker.java390 String apnType = bundle.getString(INTENT_RECONNECT_ALARM_EXTRA_TYPE);
404 ApnContext apnContext = mApnContexts.get(apnType);
407 log("onDataReconnect: mState=" + mState + " reason=" + reason + " apnType=" + apnType
1072 public LinkProperties getLinkProperties(String apnType) { argument
1073 ApnContext apnContext = mApnContexts.get(apnType);
1077 if (DBG) log("return link properites for " + apnType);
1085 public NetworkCapabilities getNetworkCapabilities(String apnType) { argument
1086 ApnContext apnContext = mApnContexts.get(apnType);
1091 log("get active pdp is not null, return NetworkCapabilities for " + apnType);
1115 getActiveApnString(String apnType) argument
1128 getState(String apnType) argument
1137 isProvisioningApn(String apnType) argument
2352 onSetDependencyMet(String apnType, boolean met) argument
4007 getApnProfileID(String apnType) argument
4275 getPcscfAddress(String apnType) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java1076 String reason, String apn, String apnType, LinkProperties linkProperties,
1079 isDataAllowed,reason, apn, apnType, linkProperties,
1084 boolean isDataAllowed, String reason, String apn, String apnType,
1094 + "' apn='" + apn + "' apnType=" + apnType + " networkType=" + networkType
1102 if (!mConnectedApns[phoneId].contains(apnType)) {
1103 mConnectedApns[phoneId].add(apnType);
1110 if (mConnectedApns[phoneId].remove(apnType)) {
1151 apnType, apn, reason, linkProperties, "");
1167 apnType, linkPropertie
1075 notifyDataConnection(int state, boolean isDataAllowed, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
1083 notifyDataConnectionForSubscriber(int subId, int state, boolean isDataAllowed, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
1172 notifyDataConnectionFailed(String reason, String apnType) argument
1177 notifyDataConnectionFailedForSubscriber(int subId, String reason, String apnType) argument
1314 notifyPreciseDataConnectionFailed(String reason, String apnType, String apn, String failCause) argument
1534 broadcastDataConnectionStateChanged(int state, boolean isDataAllowed, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, boolean roaming, int subId) argument
1568 broadcastDataConnectionFailed(String reason, String apnType, int subId) argument
1589 broadcastPreciseDataConnectionStateChanged(int state, int networkType, String apnType, String apn, String reason, LinkProperties linkProperties, String failCause) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneBase.java195 public PhoneConstants.DataState getDataConnectionState(String apnType) { argument
533 public LinkProperties getLinkProperties(String apnType) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java156 public PhoneConstants.DataState getDataConnectionState(String apnType) { argument
506 public LinkProperties getLinkProperties(String apnType) { argument

Completed in 173 milliseconds