Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiLoggerTest.java97 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()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiLogger.java124 mIsLoggingEventHandlerRegistered = mWifiNative.setLoggingEventHandler(mHandler); in startLogging()
DWifiNative.java2458 public boolean setLoggingEventHandler(WifiLoggerEventHandler handler) { in setLoggingEventHandler() method in WifiNative