Home
last modified time | relevance | path

Searched refs:mSupport5gBand (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/nan/
DConfigRequest.java51 public final boolean mSupport5gBand; field in ConfigRequest
78 mSupport5gBand = support5gBand; in ConfigRequest()
86 return "ConfigRequest [mSupport5gBand=" + mSupport5gBand + ", mMasterPreference=" in toString()
98 dest.writeInt(mSupport5gBand ? 1 : 0); in writeToParcel()
132 return mSupport5gBand == lhs.mSupport5gBand && mMasterPreference == lhs.mMasterPreference in equals()
140 result = 31 * result + (mSupport5gBand ? 1 : 0); in hashCode()
152 private boolean mSupport5gBand; field in ConfigRequest.Builder
161 mSupport5gBand = false; in Builder()
175 mSupport5gBand = support5gBand; in setSupport5gBand()
259 return new ConfigRequest(mSupport5gBand, mMasterPreference, mClusterLow, mClusterHigh); in build()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/nan/
DWifiNanManagerTest.java65 collector.checkThat("mSupport5gBand", supportBand5g, equalTo(configRequest.mSupport5gBand)); in testConfigRequestBuilder()
DWifiNanStateManagerTest.java818 collector.checkThat("merge: stage 1: support 5g", crCapture.getValue().mSupport5gBand, in testConfigs()
839 collector.checkThat("merge: stage 2: support 5g", crCapture.getValue().mSupport5gBand, in testConfigs()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/nan/
DWifiNanStateManager.java1138 if (cr.mSupport5gBand) { in mergeConfigRequests()