Home
last modified time | relevance | path

Searched refs:mSupport6gBand (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Wifi/framework/java/android/net/wifi/aware/
DConfigRequest.java93 public final boolean mSupport6gBand; field in ConfigRequest
130 mSupport6gBand = support6gBand; in ConfigRequest()
142 + ", mSupport6gBand=" + mSupport6gBand in toString()
161 dest.writeInt(mSupport6gBand ? 1 : 0); in writeToParcel()
205 && mSupport6gBand == lhs.mSupport6gBand in equals()
218 result = 31 * result + (mSupport6gBand ? 1 : 0); in hashCode()
309 private boolean mSupport6gBand = false; field in ConfigRequest.Builder
341 mSupport6gBand = support6gBand; in setSupport6gBand()
487 return new ConfigRequest(mSupport5gBand, mSupport6gBand, mMasterPreference, mClusterLow, in build()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/aware/
DWifiAwareManagerTest.java662 collector.checkThat("mSupport6gBand", false, equalTo(configRequest.mSupport6gBand)); in testConfigRequestBuilderDefaults()
700 collector.checkThat("mSupport6gBand", supportBand6g, equalTo(configRequest.mSupport6gBand)); in testConfigRequestBuilder()
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/
DWifiNanIfaceAidlImpl.java687 req.operateInBand[NanBandIndex.NAN_BAND_6GHZ] = configRequest.mSupport6gBand; in createNanEnableRequest()
DWifiNanIfaceHidlImpl.java438 configRequest.mSupport6gBand; in enableAndConfigureInternal()
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/
DWifiAwareStateManager.java5542 support6gBand = configRequest.mSupport6gBand; in mergeConfigRequests()
5558 if (cr.mSupport6gBand) { in mergeConfigRequests()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/aware/
DWifiAwareStateManagerTest.java3218 collector.checkThat("support 6g: or", false, equalTo(crCapture.getValue().mSupport6gBand)); in testConfigs()