Home
last modified time | relevance | path

Searched refs:onWifiAlert (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiDiagnostics.java515 public void onWifiAlert(int errorCode, byte[] buffer) {
516 WifiDiagnostics.this.onWifiAlert(errorCode, buffer);
527 synchronized void onWifiAlert(int errorCode, @NonNull byte[] buffer) { in onWifiAlert() method in WifiDiagnostics
H A DWifiNative.java3431 void onWifiAlert(int errorCode, byte[] buffer);
H A DWifiVendorHal.java3522 eventHandler.onWifiAlert(
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiDiagnosticsTest.java770 mWifiDiagnostics.onWifiAlert(ALERT_REASON_CODE, ALERT_DATA);
977 mWifiDiagnostics.onWifiAlert(FATAL_FW_ALERT_LIST[0], ALERT_DATA);
988 mWifiDiagnostics.onWifiAlert(NON_FATAL_FW_ALERT, ALERT_DATA);
H A DWifiVendorHalTest.java3962 verify(eventHandler).onWifiAlert(eq(errorCode), eq(errorData)); in testAlertCallbackUsingProvidedCallback()
3970 verify(eventHandler, never()).onWifiAlert(anyInt(), anyObject()); in testAlertCallbackUsingProvidedCallback()