Searched refs:setLoggingEventHandler (Results 1 – 5 of 5) sorted by relevance
142 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandler()154 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(false); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()156 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()159 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()161 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()170 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()172 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()176 verify(mWifiNative, never()).setLoggingEventHandler(anyObject()); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()215 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in stopLoggingResetsLogHandlerIfHandlerWasRegistered()235 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in multipleStopLoggingCallsOnlyResetLogHandlerOnce()
2211 assertFalse(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testSetLogHandler()2216 assertTrue(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testSetLogHandler()2221 assertFalse(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testSetLogHandler()2240 assertTrue(mWifiVendorHal.setLoggingEventHandler( in testResetLogHandler()2260 assertTrue(mWifiVendorHal.setLoggingEventHandler( in testResetLogHandlerAfterHalStop()2276 assertTrue(mWifiVendorHal.setLoggingEventHandler( in testResetLogHandlerAfterHalStop()2314 assertTrue(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testRingBufferDataCallback()3263 assertTrue(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testAlertCallbackUsingProvidedCallback()
158 mIsLoggingEventHandlerRegistered = mWifiNative.setLoggingEventHandler(mHandler); in startLogging()
2717 public boolean setLoggingEventHandler(WifiLoggerEventHandler handler) { in setLoggingEventHandler() method in WifiNative2718 return mWifiVendorHal.setLoggingEventHandler(handler); in setLoggingEventHandler()
1464 public boolean setLoggingEventHandler(WifiNative.WifiLoggerEventHandler handler) { in setLoggingEventHandler() method in WifiVendorHal