Searched defs:linkProperties (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkState.java30 public final LinkProperties linkProperties; field in class:NetworkState
36 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties, argument
40 this.linkProperties = linkProperties;
49 linkProperties = in.readParcelable(null);
64 out.writeParcelable(linkProperties, flags);
H A DNetworkAgent.java355 public void sendLinkProperties(LinkProperties linkProperties) { argument
356 queueOrSendMessage(EVENT_NETWORK_PROPERTIES_CHANGED, new LinkProperties(linkProperties));
H A DConnectivityManager.java2238 * @param linkProperties The new {@link LinkProperties} for this network.
2240 public void onLinkPropertiesChanged(Network network, LinkProperties linkProperties) {} argument
/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);
163 linkProperties.addLinkAddress(la);
182 linkProperties.addDnsServer(ia);
199 linkProperties.addDnsServer(ia);
225 linkProperties.addRoute(new RouteInfo(ia));
230 linkProperties
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkAgentInfo.java107 public LinkProperties linkProperties; field in class:NetworkAgentInfo
173 linkProperties = lp;
253 linkProperties + "} nc{" +
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java1036 String reason, String apn, String apnType, LinkProperties linkProperties,
1039 isDataConnectivityPossible,reason, apn, apnType, linkProperties,
1045 LinkProperties linkProperties, NetworkCapabilities networkCapabilities,
1082 mDataConnectionLinkProperties[phoneId] = linkProperties;
1111 apnType, apn, reason, linkProperties, "");
1126 apnType, linkProperties, networkCapabilities, roaming, subId);
1128 linkProperties, "");
1468 String reason, String apn, String apnType, LinkProperties linkProperties,
1482 if (linkProperties != null) {
1483 intent.putExtra(PhoneConstants.DATA_LINK_PROPERTIES_KEY, linkProperties);
1035 notifyDataConnection(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
1043 notifyDataConnectionForSubscriber(int subId, int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int networkType, boolean roaming) argument
1466 broadcastDataConnectionStateChanged(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, boolean roaming, int subId) argument
1521 broadcastPreciseDataConnectionStateChanged(int state, int networkType, String apnType, String apn, String reason, LinkProperties linkProperties, String failCause) argument
[all...]
H A DConnectivityService.java854 lp = new LinkProperties(nai.linkProperties);
924 lp = new LinkProperties(nai.linkProperties);
992 return getFilteredNetworkInfo(state.networkInfo, state.linkProperties, uid);
1013 if (nai != null && isNetworkWithLinkPropertiesBlocked(nai.linkProperties, uid)) nai = null;
1028 return getFilteredNetworkInfo(state.networkInfo, state.linkProperties, uid);
1041 return getFilteredNetworkInfo(state.networkInfo, state.linkProperties, uid);
1057 info = getFilteredNetworkInfo(info, nai.linkProperties, uid);
1082 if (!isNetworkWithLinkPropertiesBlocked(state.linkProperties, uid)) {
1168 return state.linkProperties;
1177 return new LinkProperties(nai.linkProperties);
3900 registerNetworkAgent(Messenger messenger, NetworkInfo networkInfo, LinkProperties linkProperties, NetworkCapabilities networkCapabilities, int currentScore, NetworkMisc networkMisc) argument
[all...]

Completed in 557 milliseconds