Lines Matching defs:mLinkProperties

279     private LinkProperties mLinkProperties;
861 mLinkProperties = new LinkProperties();
2298 pw.println("mLinkProperties " + mLinkProperties);
2736 if (mLinkProperties != null) {
2737 if (mLinkProperties.hasIPv4Address()) {
2740 if (mLinkProperties.hasGlobalIPv6Address()) {
2743 if (mLinkProperties.hasIPv4DefaultRoute()) {
2746 if (mLinkProperties.hasIPv6DefaultRoute()) {
2749 if (mLinkProperties.hasIPv4DnsServer()) {
2752 if (mLinkProperties.hasIPv6DnsServer()) {
2813 if (mLinkProperties != null) {
2814 if (mLinkProperties.hasIPv4Address()) {
2817 if (mLinkProperties.hasGlobalIPv6Address()) {
2820 if (mLinkProperties.hasIPv4DefaultRoute()) {
2823 if (mLinkProperties.hasIPv6DefaultRoute()) {
2826 if (mLinkProperties.hasIPv4DnsServer()) {
2829 if (mLinkProperties.hasIPv6DnsServer()) {
3790 * Updates mLinkProperties by merging information from various sources.
3792 * This is needed because the information in mLinkProperties comes from multiple sources (DHCP,
3794 * link properties, we can't just assign them to mLinkProperties or we'd lose track of the
3797 * call this method to apply the change to mLinkProperties.
3799 * The information in mLinkProperties is currently obtained as follows:
3838 final boolean linkChanged = !newLp.equals(mLinkProperties);
3839 final boolean wasProvisioned = isProvisioned(mLinkProperties);
3846 + " old: " + mLinkProperties + " new: " + newLp);
3848 mLinkProperties = newLp;
3850 mLinkProperties.setTcpBufferSizes(mTcpBufferSizes);
3852 if (mNetworkAgent != null) mNetworkAgent.sendLinkProperties(mLinkProperties);
3861 if (mLinkProperties != null) {
3862 if (mLinkProperties.hasIPv4Address()) {
3865 if (mLinkProperties.hasGlobalIPv6Address()) {
3868 if (mLinkProperties.hasIPv4DefaultRoute()) {
3871 if (mLinkProperties.hasIPv6DefaultRoute()) {
3874 if (mLinkProperties.hasIPv4DnsServer()) {
3877 if (mLinkProperties.hasIPv6DnsServer()) {
3899 // mLinkProperties is out of sync with reality, or there's a bug in this code).
3901 // point in staying connected, and if mLinkProperties is out of sync with
3969 mLinkProperties.clear();
3970 if (mNetworkAgent != null) mNetworkAgent.sendLinkProperties(mLinkProperties);
3978 for (RouteInfo route : mLinkProperties.getRoutes()) {
4038 intent.putExtra(WifiManager.EXTRA_LINK_PROPERTIES, new LinkProperties (mLinkProperties));
4051 intent.putExtra(WifiManager.EXTRA_LINK_PROPERTIES, new LinkProperties(mLinkProperties));
6644 mLinkProperties.setTcpBufferSizes(mTcpBufferSizes);
6648 mLinkProperties, 60);