Searched refs:setLoggingEventHandler (Results 1 – 5 of 5) sorted by relevance
176 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandler()191 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()195 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()198 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()205 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()208 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()213 verify(mWifiNative, never()).setLoggingEventHandler(anyObject()); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()255 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in stopLoggingResetsLogHandlerIfHandlerWasRegistered()275 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in multipleStopLoggingCallsOnlyResetLogHandlerOnce()1109 when(mWifiNative.setLoggingEventHandler(any())).thenReturn(true);[all …]
2756 assertFalse(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testSetLogHandler()2761 assertTrue(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testSetLogHandler()2766 assertFalse(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testSetLogHandler()2785 assertTrue(mWifiVendorHal.setLoggingEventHandler( in testResetLogHandler()2805 assertTrue(mWifiVendorHal.setLoggingEventHandler( in testResetLogHandlerAfterHalStop()2821 assertTrue(mWifiVendorHal.setLoggingEventHandler( in testResetLogHandlerAfterHalStop()2859 assertTrue(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testRingBufferDataCallback()3955 assertTrue(mWifiVendorHal.setLoggingEventHandler(eventHandler)); in testAlertCallbackUsingProvidedCallback()
193 mIsLoggingEventHandlerRegistered = mWifiNative.setLoggingEventHandler(mHandler); in startLogging()
3441 public boolean setLoggingEventHandler(WifiLoggerEventHandler handler) {3442 return mWifiVendorHal.setLoggingEventHandler(handler);
2053 public boolean setLoggingEventHandler(WifiNative.WifiLoggerEventHandler handler) { in setLoggingEventHandler() method in WifiVendorHal