Searched refs:mHostapdHal (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DHostapdHalTest.java60 private HostapdHal mHostapdHal; field in class:HostapdHalTest
112 mHostapdHal = new HostapdHalSpy();
147 mHostapdHal.registerDeathHandler(mHostapdHalDeathHandler);
168 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration));
201 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration));
235 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration));
260 mHostapdHal = new HostapdHalSpy();
273 assertTrue(mHostapdHal.addAccessPoint(IFACE_NAME, configuration));
298 mHostapdHal = new HostapdHalSpy();
311 assertTrue(mHostapdHal
[all...]
H A DWifiNativeInterfaceManagementTest.java74 @Mock private HostapdHal mHostapdHal; field in class:WifiNativeInterfaceManagementTest
147 when(mHostapdHal.registerDeathHandler(mHostapdDeathHandlerCaptor.capture()))
149 when(mHostapdHal.deregisterDeathHandler()).thenReturn(true);
150 when(mHostapdHal.initialize()).thenReturn(true);
151 when(mHostapdHal.isInitializationStarted()).thenReturn(false);
152 when(mHostapdHal.isInitializationComplete()).thenReturn(true);
153 when(mHostapdHal.addAccessPoint(any(), any())).thenReturn(true);
154 when(mHostapdHal.removeAccessPoint(any())).thenReturn(true);
159 mInOrder = inOrder(mWifiVendorHal, mWificondControl, mSupplicantStaIfaceHal, mHostapdHal,
163 mWifiVendorHal, mSupplicantStaIfaceHal, mHostapdHal, mWificondContro
[all...]
H A DWifiNativeTest.java151 @Mock private HostapdHal mHostapdHal; field in class:WifiNativeTest
165 mWifiVendorHal, mStaIfaceHal, mHostapdHal, mWificondControl,
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java74 private final HostapdHal mHostapdHal; field in class:WifiNative
90 mHostapdHal = hostapdHal;
416 if (!mHostapdHal.removeAccessPoint(iface.name)) {
419 if (!mHostapdHal.deregisterDeathHandler()) {
1222 if (!mHostapdHal.isInitializationStarted()
1223 && !mHostapdHal.initialize()) {
1230 connected = mHostapdHal.isInitializationComplete();
1262 if (!mHostapdHal.registerDeathHandler(new HostapdDeathHandlerInternal())) {
1267 if (!mHostapdHal.addAccessPoint(ifaceName, config)) {
1282 if (!mHostapdHal
[all...]
H A DWifiInjector.java91 private final HostapdHal mHostapdHal; field in class:WifiInjector
189 mHostapdHal = new HostapdHal(mContext);
194 mWifiVendorHal, mSupplicantStaIfaceHal, mHostapdHal, mWificondControl,

Completed in 95 milliseconds