Home
last modified time | relevance | path

Searched refs:mOsuNetworkConnection (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointProvisioner.java82 private final OsuNetworkConnection mOsuNetworkConnection; field in PasspointProvisioner
100 mOsuNetworkConnection = objectFactory.makeOsuNetworkConnection(context); in PasspointProvisioner()
120 mOsuNetworkConnection.init(mProvisioningStateMachine.getHandler()); in init()
136 mOsuNetworkConnection.enableVerboseLogging(level); in enableVerboseLogging()
267 mOsuNetworkConnection.setEventCallback(mOsuNetworkCallbacks); in startProvisioning()
272 if (!mOsuNetworkConnection.connect(mOsuProvider.getOsuSsid(), in startProvisioning()
969 mOsuNetworkConnection.setEventCallback(null); in resetStateMachine()
970 mOsuNetworkConnection.disconnectIfNeeded(); in resetStateMachine()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointProvisionerTest.java176 @Mock OsuNetworkConnection mOsuNetworkConnection; field in PasspointProvisionerTest
212 .thenReturn(mOsuNetworkConnection); in setUp()
224 when(mOsuNetworkConnection.connect(any(WifiSsid.class), any(), any())).thenReturn(true); in setUp()
297 verify(mOsuNetworkConnection).init(mHandlerCaptor.capture()); in initAndStartProvisioning()
311 verify(mOsuNetworkConnection, atLeastOnce()) in initAndStartProvisioning()
519 verify(mOsuNetworkConnection, atLeastOnce()).connect(wifiSsidArgumentCaptor.capture(), in verifySelectBestOsuProviderForProvisioning()
547 verify(mOsuNetworkConnection).init(mHandlerCaptor.capture()); in verifyRedirectStartFailure()
573 when(mOsuNetworkConnection.connect(any(WifiSsid.class), any(), any())).thenReturn(false); in verifyConnectAttemptFailure()
DPasspointManagerTest.java179 @Mock OsuNetworkConnection mOsuNetworkConnection; field in PasspointManagerTest
207 .thenReturn(mOsuNetworkConnection); in setUp()