Searched refs:setLoggingEventHandler (Results 1 – 3 of 3) sorted by relevance
97 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandler()109 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(false); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()111 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()114 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()116 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingRegistersLogEventHandlerIfPriorAttemptFailed()125 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()127 verify(mWifiNative).setLoggingEventHandler(anyObject()); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()131 verify(mWifiNative, never()).setLoggingEventHandler(anyObject()); in startLoggingDoesNotRegisterLogEventHandlerIfPriorAttemptSucceeded()158 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in stopLoggingResetsLogHandlerIfHandlerWasRegistered()179 when(mWifiNative.setLoggingEventHandler(anyObject())).thenReturn(true); in multipleStopLoggingCallsOnlyResetLogHandlerOnce()
124 mIsLoggingEventHandlerRegistered = mWifiNative.setLoggingEventHandler(mHandler); in startLogging()
2458 public boolean setLoggingEventHandler(WifiLoggerEventHandler handler) { in setLoggingEventHandler() method in WifiNative