Home
last modified time | relevance | path

Searched refs:AssocRejectEventInfo (Results 1 – 12 of 12) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/
DAssocRejectEventInfo.java30 public class AssocRejectEventInfo { class
40 public AssocRejectEventInfo(@NonNull String ssid, @NonNull String bssid, int statusCode, in AssocRejectEventInfo() method in AssocRejectEventInfo
60 public AssocRejectEventInfo(android.hardware.wifi.supplicant.V1_4 in AssocRejectEventInfo() method in AssocRejectEventInfo
86 public AssocRejectEventInfo(AssociationRejectionData assocRejectData) { in AssocRejectEventInfo() method in AssocRejectEventInfo
DSupplicantStaIfaceCallbackHidlImpl.java317 private void handleAssocRejectEvent(AssocRejectEventInfo assocRejectInfo) { in handleAssocRejectEvent()
386 AssocRejectEventInfo assocRejectInfo = new AssocRejectEventInfo(assocRejectData); in onAssociationRejected()
393 AssocRejectEventInfo assocRejectInfo = new AssocRejectEventInfo( in onAssociationRejected()
DSupplicantStaIfaceCallbackAidlImpl.java359 private void handleAssocRejectEvent(AssocRejectEventInfo assocRejectInfo) { in handleAssocRejectEvent()
427 AssocRejectEventInfo assocRejectInfo = new AssocRejectEventInfo(assocRejectData); in onAssociationRejected()
DWifiMonitor.java556 AssocRejectEventInfo assocRejectInfo) { in broadcastAssociationRejectionEvent()
DClientModeImpl.java2206 sb.append(" ").append((AssocRejectEventInfo) msg.obj); in getLogRecString()
6139 AssocRejectEventInfo assocRejectEventInfo = (AssocRejectEventInfo) message.obj; in processMessageImpl()
8794 AssocRejectEventInfo assocRejectEventInfo) { in setAssociationRejectionStatusInConfig()
DWifiMetrics.java6093 AssocRejectEventInfo assocRejectEventInfo = (AssocRejectEventInfo) msg.obj; in processMessage()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaIfaceHalHidlImplTest.java1412 ArgumentCaptor<AssocRejectEventInfo> assocRejectEventInfoCaptor = in testWpa3AuthRejectionPassword()
1413 ArgumentCaptor.forClass(AssocRejectEventInfo.class); in testWpa3AuthRejectionPassword()
1416 AssocRejectEventInfo assocRejectEventInfo = in testWpa3AuthRejectionPassword()
1417 (AssocRejectEventInfo) assocRejectEventInfoCaptor.getValue(); in testWpa3AuthRejectionPassword()
1453 ArgumentCaptor<AssocRejectEventInfo> assocRejectEventInfoCaptor = in testWpa3AuthRejectionPassword_1_4()
1454 ArgumentCaptor.forClass(AssocRejectEventInfo.class); in testWpa3AuthRejectionPassword_1_4()
1457 AssocRejectEventInfo assocRejectEventInfo = assocRejectEventInfoCaptor.getValue(); in testWpa3AuthRejectionPassword_1_4()
1488 ArgumentCaptor<AssocRejectEventInfo> assocRejectEventInfoCaptor = in testWpa3AuthRejectionEverConnected()
1489 ArgumentCaptor.forClass(AssocRejectEventInfo.class); in testWpa3AuthRejectionEverConnected()
1492 AssocRejectEventInfo assocRejectEventInfo = in testWpa3AuthRejectionEverConnected()
[all …]
DSupplicantStaIfaceHalAidlImplTest.java1219 ArgumentCaptor<AssocRejectEventInfo> assocRejectEventInfoCaptor = in testWpa3AuthRejectionPassword()
1220 ArgumentCaptor.forClass(AssocRejectEventInfo.class); in testWpa3AuthRejectionPassword()
1223 AssocRejectEventInfo assocRejectEventInfo = assocRejectEventInfoCaptor.getValue(); in testWpa3AuthRejectionPassword()
1256 ArgumentCaptor<AssocRejectEventInfo> assocRejectEventInfoCaptor = in testWpa3AuthRejectionEverConnected()
1257 ArgumentCaptor.forClass(AssocRejectEventInfo.class); in testWpa3AuthRejectionEverConnected()
1260 AssocRejectEventInfo assocRejectEventInfo = assocRejectEventInfoCaptor.getValue(); in testWpa3AuthRejectionEverConnected()
1295 ArgumentCaptor<AssocRejectEventInfo> assocRejectEventInfoCaptor = in testAssociationRejectionDueToTimedOutDoesntNotifyWrongPassword()
1296 ArgumentCaptor.forClass(AssocRejectEventInfo.class); in testAssociationRejectionDueToTimedOutDoesntNotifyWrongPassword()
1299 AssocRejectEventInfo assocRejectEventInfo = assocRejectEventInfoCaptor.getValue(); in testAssociationRejectionDueToTimedOutDoesntNotifyWrongPassword()
1329 ArgumentCaptor<AssocRejectEventInfo> assocRejectEventInfoCaptor = in testWpa3AuthRejectionDueToChallengeFail()
[all …]
DWifiMonitorTest.java416 AssocRejectEventInfo assocRejectInfo = new AssocRejectEventInfo( in testBroadcastAssociationRejectionEvent()
426 AssocRejectEventInfo assocRejectEventInfo = in testBroadcastAssociationRejectionEvent()
427 (AssocRejectEventInfo) messageCaptor.getValue().obj; in testBroadcastAssociationRejectionEvent()
DClientModeImplTest.java2536 new AssocRejectEventInfo(mConnectedNetwork.SSID, TEST_BSSID_STR, in connectAfterAssociationRejection()
3702 new AssocRejectEventInfo(TEST_SSID, TEST_BSSID_STR, in testExtraFailureReason_ApIsBusy()
4563 new AssocRejectEventInfo(TEST_SSID, TEST_BSSID_STR, in testReportConnectionEventIsCalledAfterAssociationFailure()
4719 new AssocRejectEventInfo(TEST_SSID, TEST_BSSID_STR, 0, true)); in testNotifiesWifiBlocklistMonitorLowRssi()
4744 new AssocRejectEventInfo(TEST_SSID, TEST_BSSID_STR, in testAssocRejectedTemporarilyUpdatesRecentAssociationFailureStatus()
4881 new AssocRejectEventInfo(TEST_SSID, TEST_BSSID_STR, in testAssocRejectedPoorChannelConditionsUpdatesRecentAssociationFailureStatus()
4948 new AssocRejectEventInfo(assocRejectData)); in testOceRssiBasedAssociationRejectionUpdatesRecentAssociationFailureStatus()
4973 new AssocRejectEventInfo(assocRejectData)); in testMboAssocDisallowedIndInAssocRejectUpdatesRecentAssociationFailureStatus()
4990 new AssocRejectEventInfo(TEST_SSID, TEST_BSSID_STR, in testAssociationRejectionWithReasonApUnableToHandleNewStaUpdatesWatchdog()
5011 new AssocRejectEventInfo(TEST_SSID, TEST_BSSID_STR, ISupplicantStaIfaceCallback in testAssociationRejectionWithReasonDeniedInsufficientBandwidth()
[all …]
DWifiMetricsTest.java2743 new AssocRejectEventInfo(sSSID, sBSSID, ASSOC_STATUS, ASSOC_TIMEOUT),
/packages/modules/Wifi/service/tests/wifitests/
DAndroid.bp128 "com.android.server.wifi.AssocRejectEventInfo",
129 "com.android.server.wifi.AssocRejectEventInfo$*",
130 "com.android.server.wifi.AssocRejectEventInfo.**",