Searched refs:assocRejectEventInfo (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | SupplicantStaIfaceHalHidlImplTest.java | 1416 AssocRejectEventInfo assocRejectEventInfo = in testWpa3AuthRejectionPassword() local 1418 assertNotNull(assocRejectEventInfo); in testWpa3AuthRejectionPassword() 1419 assertEquals(TRANSLATED_SUPPLICANT_SSID.toString(), assocRejectEventInfo.ssid); in testWpa3AuthRejectionPassword() 1420 assertEquals(BSSID, assocRejectEventInfo.bssid); in testWpa3AuthRejectionPassword() 1421 assertEquals(statusCode, assocRejectEventInfo.statusCode); in testWpa3AuthRejectionPassword() 1422 assertFalse(assocRejectEventInfo.timedOut); in testWpa3AuthRejectionPassword() 1423 assertNull(assocRejectEventInfo.oceRssiBasedAssocRejectInfo); in testWpa3AuthRejectionPassword() 1424 assertNull(assocRejectEventInfo.mboAssocDisallowedInfo); in testWpa3AuthRejectionPassword() 1457 AssocRejectEventInfo assocRejectEventInfo = assocRejectEventInfoCaptor.getValue(); in testWpa3AuthRejectionPassword_1_4() local 1458 assertNotNull(assocRejectEventInfo); in testWpa3AuthRejectionPassword_1_4() [all …]
|
D | SupplicantStaIfaceHalAidlImplTest.java | 1223 AssocRejectEventInfo assocRejectEventInfo = assocRejectEventInfoCaptor.getValue(); in testWpa3AuthRejectionPassword() local 1224 assertNotNull(assocRejectEventInfo); in testWpa3AuthRejectionPassword() 1225 assertEquals(TRANSLATED_SUPPLICANT_SSID.toString(), assocRejectEventInfo.ssid); in testWpa3AuthRejectionPassword() 1226 assertEquals(BSSID, assocRejectEventInfo.bssid); in testWpa3AuthRejectionPassword() 1228 statusCode), assocRejectEventInfo.statusCode); in testWpa3AuthRejectionPassword() 1229 assertFalse(assocRejectEventInfo.timedOut); in testWpa3AuthRejectionPassword() 1230 assertNull(assocRejectEventInfo.oceRssiBasedAssocRejectInfo); in testWpa3AuthRejectionPassword() 1231 assertNull(assocRejectEventInfo.mboAssocDisallowedInfo); in testWpa3AuthRejectionPassword() 1260 AssocRejectEventInfo assocRejectEventInfo = assocRejectEventInfoCaptor.getValue(); in testWpa3AuthRejectionEverConnected() local 1261 assertNotNull(assocRejectEventInfo); in testWpa3AuthRejectionEverConnected() [all …]
|
D | WifiMonitorTest.java | 426 AssocRejectEventInfo assocRejectEventInfo = in testBroadcastAssociationRejectionEvent() local 428 assertNotNull(assocRejectEventInfo); in testBroadcastAssociationRejectionEvent() 429 assertEquals(status, assocRejectEventInfo.statusCode); in testBroadcastAssociationRejectionEvent() 430 assertFalse(assocRejectEventInfo.timedOut); in testBroadcastAssociationRejectionEvent() 431 assertEquals(SSID, assocRejectEventInfo.ssid); in testBroadcastAssociationRejectionEvent() 432 assertEquals(BSSID, assocRejectEventInfo.bssid); in testBroadcastAssociationRejectionEvent() 433 assertNull(assocRejectEventInfo.oceRssiBasedAssocRejectInfo); in testBroadcastAssociationRejectionEvent() 434 assertNull(assocRejectEventInfo.mboAssocDisallowedInfo); in testBroadcastAssociationRejectionEvent()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | ClientModeImpl.java | 6139 AssocRejectEventInfo assocRejectEventInfo = (AssocRejectEventInfo) message.obj; in processMessageImpl() local 6140 log("L2ConnectingState: Association rejection " + assocRejectEventInfo); in processMessageImpl() 6141 if (!assocRejectEventInfo.ssid.equals(getConnectingSsidInternal())) { in processMessageImpl() 6148 String bssid = assocRejectEventInfo.bssid; in processMessageImpl() 6149 boolean timedOut = assocRejectEventInfo.timedOut; in processMessageImpl() 6150 int statusCode = assocRejectEventInfo.statusCode; in processMessageImpl() 6165 setAssociationRejectionStatusInConfig(mTargetNetworkId, assocRejectEventInfo); in processMessageImpl() 8794 AssocRejectEventInfo assocRejectEventInfo) { in setAssociationRejectionStatusInConfig() argument 8795 int statusCode = assocRejectEventInfo.statusCode; in setAssociationRejectionStatusInConfig() 8814 if (assocRejectEventInfo.mboAssocDisallowedInfo != null) { in setAssociationRejectionStatusInConfig() [all …]
|
D | WifiMetrics.java | 6093 AssocRejectEventInfo assocRejectEventInfo = (AssocRejectEventInfo) msg.obj; in processMessage() local 6094 event.associationTimedOut = assocRejectEventInfo.timedOut; in processMessage() 6095 event.status = assocRejectEventInfo.statusCode; in processMessage()
|