Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiNative.java1595 if (isHalStarted()) { in stopHal()
1611 public boolean isHalStarted() { in isHalStarted() method in WifiNative
1618 if (isHalStarted()) { in queryInterfaceIndex()
1655 return isHalStarted() && getScanCapabilitiesNative(sWlan0Index, capabilities); in getScanCapabilities()
1903 if (isHalStarted()) { in startScan()
1931 if (isHalStarted()) { in stopScan()
1944 if (isHalStarted()) { in pauseScan()
1958 if (isHalStarted()) { in restartScan()
1978 if (isHalStarted()) { in getScanResults()
2005 if (isHalStarted()) { in setHotlist()
[all …]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DApConfigUtilTest.java188 when(mWifiNative.isHalStarted()).thenReturn(false); in updateApChannelConfigWithoutHal()
205 when(mWifiNative.isHalStarted()).thenReturn(true); in updateApChannelConfig5GBandNoCountryCode()
219 when(mWifiNative.isHalStarted()).thenReturn(true); in updateApChannelConfigWithChannelSpecified()
235 when(mWifiNative.isHalStarted()).thenReturn(true); in updateApChannelConfigWith5GBandNoChannelAllowed()
252 when(mWifiNative.isHalStarted()).thenReturn(true); in updateApChannelConfigWithoutChannelsForBandSupported()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java402 assertFalse(mWifiNative.isHalStarted()); in testStartPktFateMonitoringReturnsFalseWhenHalIsNotStarted()
412 assertFalse(mWifiNative.isHalStarted()); in testGetTxPktFatesReturnsErrorWhenHalIsNotStarted()
422 assertFalse(mWifiNative.isHalStarted()); in testGetRxPktFatesReturnsErrorWhenHalIsNotStarted()
DSoftApManagerTest.java185 when(mWifiNative.isHalStarted()).thenReturn(false); in startSoftApAndVerifyEnabled()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DApConfigUtil.java117 if (!wifiNative.isHalStarted()) { in updateApChannelConfig()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/nan/
DWifiNanNative.java107 boolean halStarted = WifiNative.getWlanNativeInterface().isHalStarted(); in isNanInit()