Searched refs:apnType (Results 1 - 20 of 20) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTestPhoneNotifier.java.broken51 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/
H A DPhoneNotifier.java43 public void notifyDataConnection(Phone sender, String reason, String apnType, argument
46 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType); argument
61 public void notifyPreciseDataConnectionFailed(Phone sender, String reason, String apnType, argument
H A DDefaultPhoneNotifier.java154 public void notifyDataConnection(Phone sender, String reason, String apnType, argument
156 doNotifyDataConnection(sender, reason, apnType, state);
159 private void doNotifyDataConnection(Phone sender, String reason, String apnType, argument
166 // use apnType as the key to which connection we're talking about.
167 // pass apnType back up to fetch particular for this one.
174 linkProperties = sender.getLinkProperties(apnType);
175 networkCapabilities = sender.getNetworkCapabilities(apnType);
185 sender.getActiveApnHost(apnType),
186 apnType,
198 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType) { argument
286 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 DPhone.java2156 public void notifyDataConnection(String reason, String apnType, argument
2158 mNotifier.notifyDataConnection(this, reason, apnType, state);
2161 public void notifyDataConnection(String reason, String apnType) { argument
2162 mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType));
2167 for (String apnType : types) {
2168 mNotifier.notifyDataConnection(this, reason, apnType, getDataConnectionState(apnType));
2799 public String getActiveApnHost(String apnType) { argument
2800 return mDcTracker.getActiveApnString(apnType);
2806 getLinkProperties(String apnType) argument
2813 getNetworkCapabilities(String apnType) argument
2968 notifyDataConnectionFailed(String reason, String apnType) argument
2972 notifyPreciseDataConnectionFailed(String reason, String apnType, String apn, String failCause) argument
3022 getPcscfAddress(String apnType) argument
[all...]
H A DPhoneInternalInterface.java268 * @param apnType specify for which apn to get connection state info.
270 DataState getDataConnectionState(String apnType); argument
H A DGsmCdmaPhone.java517 public PhoneConstants.DataState getDataConnectionState(String apnType) { argument
527 (isPhoneTypeGsm() && !apnType.equals(PhoneConstants.APN_TYPE_EMERGENCY)))) {
536 switch (mDcTracker.getState(apnType)) {
554 logd("getDataConnectionState apnType=" + apnType + " ret=" + ret);
/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
144 public String[] getPcscfAddress(String apnType) { argument
H A DTelephonyRegistryMock.java237 String reason, String apn, String apnType, LinkProperties linkProperties,
244 boolean isDataConnectivityPossible, String reason, String apn, String apnType,
251 public void notifyDataConnectionFailed(String reason, String apnType) { argument
256 public void notifyDataConnectionFailedForSubscriber(int subId, String reason, String apnType) { argument
303 public void notifyPreciseDataConnectionFailed(String reason, String apnType, String apn, argument
236 notifyDataConnection(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
243 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/base/telephony/java/com/android/internal/telephony/
H A DITelephonyRegistry.aidl50 String reason, String apn, String apnType, in LinkProperties linkProperties,
53 String reason, String apn, String apnType, in LinkProperties linkProperties,
55 void notifyDataConnectionFailed(String reason, String apnType);
56 void notifyDataConnectionFailedForSubscriber(int subId, String reason, String apnType);
67 void notifyPreciseDataConnectionFailed(String reason, String apnType, String apn,
H A DITelephony.aidl934 * @param apnType the apnType, "ims" for IMS APN, "emergency" for EMERGENCY APN
937 String[] getPcscfAddress(String apnType, String callingPackage);
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java1170 String reason, String apn, String apnType, LinkProperties linkProperties,
1173 isDataAllowed,reason, apn, apnType, linkProperties,
1178 boolean isDataAllowed, String reason, String apn, String apnType,
1188 + "' apn='" + apn + "' apnType=" + apnType + " networkType=" + networkType
1195 if (PhoneConstants.APN_TYPE_DEFAULT.equals(apnType)
1222 apnType, apn, reason, linkProperties, "");
1238 apnType, linkProperties, networkCapabilities, roaming, subId);
1239 broadcastPreciseDataConnectionStateChanged(state, networkType, apnType, apn, reason,
1243 public void notifyDataConnectionFailed(String reason, String apnType) { argument
1169 notifyDataConnection(int state, boolean isDataAllowed, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
1177 notifyDataConnectionForSubscriber(int subId, int state, boolean isDataAllowed, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
1248 notifyDataConnectionFailedForSubscriber(int subId, String reason, String apnType) argument
1386 notifyPreciseDataConnectionFailed(String reason, String apnType, String apn, String failCause) argument
1607 broadcastDataConnectionStateChanged(int state, boolean isDataAllowed, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, boolean roaming, int subId) argument
1641 broadcastDataConnectionFailed(String reason, String apnType, int subId) argument
1662 broadcastPreciseDataConnectionStateChanged(int state, int networkType, String apnType, String apn, String reason, LinkProperties linkProperties, String failCause) argument
[all...]
/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.java5300 * @param apnType the apnType, "ims" for IMS APN, "emergency" for EMERGENCY APN
5304 public String[] getPcscfAddress(String apnType) { argument
5309 return telephony.getPcscfAddress(apnType, getOpPackageName());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java373 String apnType = bundle.getString(INTENT_RECONNECT_ALARM_EXTRA_TYPE);
387 ApnContext apnContext = mApnContexts.get(apnType);
390 log("onDataReconnect: mState=" + mState + " reason=" + reason + " apnType=" + apnType
1033 public LinkProperties getLinkProperties(String apnType) { argument
1034 ApnContext apnContext = mApnContexts.get(apnType);
1038 if (DBG) log("return link properites for " + apnType);
1046 public NetworkCapabilities getNetworkCapabilities(String apnType) { argument
1047 ApnContext apnContext = mApnContexts.get(apnType);
1052 log("get active pdp is not null, return NetworkCapabilities for " + apnType);
1076 getActiveApnString(String apnType) argument
1095 getState(String apnType) argument
1115 isProvisioningApn(String apnType) argument
2362 onSetDependencyMet(String apnType, boolean met) argument
4021 getApnProfileID(String apnType) argument
4286 getPcscfAddress(String apnType) argument
[all...]
H A DApnContext.java104 * @param apnType APN type (e.g. default, supl, mms, etc...)
109 public ApnContext(Phone phone, String apnType, String logTag, NetworkConfig config, argument
112 mApnType = apnType;
120 mRetryManager = new RetryManager(phone, apnType);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneBase.java197 public PhoneConstants.DataState getDataConnectionState(String apnType) { argument
536 public LinkProperties getLinkProperties(String apnType) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java148 public PhoneConstants.DataState getDataConnectionState(String apnType) { argument
495 public LinkProperties getLinkProperties(String apnType) { argument
/frameworks/base/telephony/java/android/telephony/data/
H A DApnSetting.java896 String apnType = deParseTypes(mApnTypeBitmask);
897 apnValue.put(Telephony.Carriers.TYPE, nullToEmpty(apnType));

Completed in 182 milliseconds