Searched refs:setLoggingEventHandler (Results 1 – 5 of 5) sorted by relevance
144 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandler()156 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(false); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()159 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()163 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()166 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()173 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()176 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()181 verify(mWifiNative, never()).setLoggingEventHandler(anyObject()); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()223 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in stopLoggingResetsLogHandlerIfHandlerWasRegistered()243 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in multipleStopLoggingCallsOnlyResetLogHandlerOnce()[all …]
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()3268 assertTrue(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testAlertCallbackUsingProvidedCallback()
176 mIsLoggingEventHandlerRegistered = mWifiNative.setLoggingEventHandler(mHandler); in startLogging()
2718 public boolean setLoggingEventHandler(WifiLoggerEventHandler handler) { in setLoggingEventHandler() method in WifiNative2719 return mWifiVendorHal.setLoggingEventHandler(handler); in setLoggingEventHandler()
1464 public boolean setLoggingEventHandler(WifiNative.WifiLoggerEventHandler handler) { in setLoggingEventHandler() method in WifiVendorHal