Searched defs:linkProperties (Results 1 - 10 of 10) sorted by path

/frameworks/base/core/java/android/net/
H A DConnectivityManager.java2615 * @param linkProperties The new {@link LinkProperties} for this network.
2617 public void onLinkPropertiesChanged(Network network, LinkProperties linkProperties) {} argument
H A DNetworkAgent.java361 public void sendLinkProperties(LinkProperties linkProperties) { argument
362 queueOrSendMessage(EVENT_NETWORK_PROPERTIES_CHANGED, new LinkProperties(linkProperties));
H A DNetworkState.java31 public final LinkProperties linkProperties; field in class:NetworkState
37 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties, argument
41 this.linkProperties = linkProperties;
50 linkProperties = in.readParcelable(null);
65 out.writeParcelable(linkProperties, flags);
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java1089 if (state == null || state.networkInfo == null || state.linkProperties == null) return;
1091 if (isNetworkWithLinkPropertiesBlocked(state.linkProperties, uid, ignoreBlocked)) {
1153 && isNetworkWithLinkPropertiesBlocked(nai.linkProperties, uid, ignoreBlocked)) {
1225 if (!isNetworkWithLinkPropertiesBlocked(state.linkProperties, uid, false)) {
1311 return state.linkProperties;
1320 return new LinkProperties(nai.linkProperties);
1333 return new LinkProperties(nai.linkProperties);
1465 lp = nai.linkProperties;
1757 final String iface = networkAgent.linkProperties.getInterfaceName();
1793 final String iface = networkAgent.linkProperties
4412 registerNetworkAgent(Messenger messenger, NetworkInfo networkInfo, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int currentScore, NetworkMisc networkMisc) argument
[all...]
H A DTelephonyRegistry.java1002 String reason, String apn, String apnType, LinkProperties linkProperties,
1005 isDataConnectivityPossible,reason, apn, apnType, linkProperties,
1011 LinkProperties linkProperties, NetworkCapabilities networkCapabilities,
1048 mDataConnectionLinkProperties[phoneId] = linkProperties;
1077 apnType, apn, reason, linkProperties, "");
1092 apnType, linkProperties, networkCapabilities, roaming, subId);
1094 linkProperties, "");
1441 String reason, String apn, String apnType, LinkProperties linkProperties,
1455 if (linkProperties != null) {
1456 intent.putExtra(PhoneConstants.DATA_LINK_PROPERTIES_KEY, linkProperties);
1001 notifyDataConnection(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
1009 notifyDataConnectionForSubscriber(int subId, int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
1439 broadcastDataConnectionStateChanged(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, boolean roaming, int subId) argument
1494 broadcastPreciseDataConnectionStateChanged(int state, int networkType, String apnType, String apn, String reason, LinkProperties linkProperties, String failCause) argument
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkAgentInfo.java124 public LinkProperties linkProperties; field in class:NetworkAgentInfo
261 linkProperties = lp;
459 new LinkProperties(linkProperties),
557 "lp{" + linkProperties + "} " +
/frameworks/base/telephony/java/android/telephony/
H A DPreciseDataConnectionState.java58 LinkProperties linkProperties, String failCause) {
64 mLinkProperties = linkProperties;
56 PreciseDataConnectionState(int state, int networkType, String apnType, String apn, String reason, LinkProperties linkProperties, String failCause) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataCallResponse.java117 public SetupResult setLinkProperties(LinkProperties linkProperties, argument
123 if (linkProperties == null)
124 linkProperties = new LinkProperties();
126 linkProperties.clear();
133 linkProperties.setInterfaceName(ifname);
169 linkProperties.addLinkAddress(la);
188 linkProperties.addDnsServer(ia);
205 linkProperties.addDnsServer(ia);
231 linkProperties.addRoute(new RouteInfo(ia));
236 linkProperties
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DConnectivityServiceMock.java343 //updateClat(null, nai.linkProperties, nai);
843 LinkProperties linkProperties, NetworkCapabilities networkCapabilities,
847 // linkProperties), new NetworkCapabilities(networkCapabilities), currentScore,
842 registerNetworkAgent(Messenger messenger, NetworkInfo networkInfo, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int currentScore, NetworkMisc networkMisc) argument
H A DTelephonyRegistryMock.java235 String reason, String apn, String apnType, LinkProperties linkProperties,
243 LinkProperties linkProperties, NetworkCapabilities networkCapabilities,
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

Completed in 469 milliseconds