Home
last modified time | relevance | path

Searched refs:assocRejectData (Results 1 – 6 of 6) sorted by relevance

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DAssocRejectEventInfo.java47 public AssocRejectEventInfo(AssociationRejectionData assocRejectData) { in AssocRejectEventInfo() argument
48 String ssid = NativeUtil.encodeSsid(assocRejectData.ssid); in AssocRejectEventInfo()
49 String bssid = NativeUtil.macAddressFromByteArray(assocRejectData.bssid); in AssocRejectEventInfo()
52 this.statusCode = assocRejectData.statusCode; in AssocRejectEventInfo()
53 this.timedOut = assocRejectData.timedOut; in AssocRejectEventInfo()
54 if (assocRejectData.isMboAssocDisallowedReasonCodePresent) { in AssocRejectEventInfo()
56 assocRejectData.mboAssocDisallowedReason); in AssocRejectEventInfo()
60 if (assocRejectData.isOceRssiBasedAssocRejectAttrPresent) { in AssocRejectEventInfo()
63 assocRejectData.oceRssiBasedAssocRejectData.deltaRssi, in AssocRejectEventInfo()
64 assocRejectData.oceRssiBasedAssocRejectData.retryDelayS); in AssocRejectEventInfo()
H A DSupplicantStaIfaceCallbackV1_4Impl.java110 public void onAssociationRejected_1_4(AssociationRejectionData assocRejectData) { in onAssociationRejected_1_4() argument
113 mCallbackV10.onAssociationRejected(assocRejectData); in onAssociationRejected_1_4()
H A DSupplicantStaIfaceCallbackImpl.java340 .ISupplicantStaIfaceCallback.AssociationRejectionData assocRejectData) { in onAssociationRejected() argument
341 AssocRejectEventInfo assocRejectInfo = new AssocRejectEventInfo(assocRejectData); in onAssociationRejected()
/aosp12/hardware/interfaces/wifi/supplicant/1.4/
H A DISupplicantStaIfaceCallback.hal168 * @param assocRejectData Association Rejection related information.
170 oneway onAssociationRejected_1_4(AssociationRejectionData assocRejectData);
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DSupplicantStaIfaceHalTest.java3423 AssociationRejectionData assocRejectData = new AssociationRejectionData(); in testAssociationRejectionCallback_1_4() local
3424 assocRejectData.ssid = NativeUtil.decodeSsid(SUPPLICANT_SSID); in testAssociationRejectionCallback_1_4()
3425 assocRejectData.bssid = NativeUtil.macAddressToByteArray(BSSID); in testAssociationRejectionCallback_1_4()
3426 assocRejectData.statusCode = 5; in testAssociationRejectionCallback_1_4()
3427 assocRejectData.isOceRssiBasedAssocRejectAttrPresent = true; in testAssociationRejectionCallback_1_4()
3428 assocRejectData.oceRssiBasedAssocRejectData.retryDelayS = 10; in testAssociationRejectionCallback_1_4()
3429 assocRejectData.oceRssiBasedAssocRejectData.deltaRssi = 20; in testAssociationRejectionCallback_1_4()
3430 mISupplicantStaIfaceCallbackV14.onAssociationRejected_1_4(assocRejectData); in testAssociationRejectionCallback_1_4()
3441 assertEquals(assocRejectData.statusCode, assocRejectEventInfo.statusCode); in testAssociationRejectionCallback_1_4()
3444 assertEquals(assocRejectData.oceRssiBasedAssocRejectData.retryDelayS, in testAssociationRejectionCallback_1_4()
[all …]
H A DClientModeImplTest.java3644 assocRejectData.ssid = NativeUtil.decodeSsid(TEST_SSID); in testOceRssiBasedAssociationRejectionUpdatesRecentAssociationFailureStatus()
3646 assocRejectData.statusCode = in testOceRssiBasedAssociationRejectionUpdatesRecentAssociationFailureStatus()
3648 assocRejectData.isOceRssiBasedAssocRejectAttrPresent = true; in testOceRssiBasedAssociationRejectionUpdatesRecentAssociationFailureStatus()
3649 assocRejectData.oceRssiBasedAssocRejectData.retryDelayS = 10; in testOceRssiBasedAssociationRejectionUpdatesRecentAssociationFailureStatus()
3650 assocRejectData.oceRssiBasedAssocRejectData.deltaRssi = 20; in testOceRssiBasedAssociationRejectionUpdatesRecentAssociationFailureStatus()
3653 new AssocRejectEventInfo(assocRejectData)); in testOceRssiBasedAssociationRejectionUpdatesRecentAssociationFailureStatus()
3669 assocRejectData.ssid = NativeUtil.decodeSsid(TEST_SSID); in testMboAssocDisallowedIndInAssocRejectUpdatesRecentAssociationFailureStatus()
3671 assocRejectData.statusCode = in testMboAssocDisallowedIndInAssocRejectUpdatesRecentAssociationFailureStatus()
3673 assocRejectData.isMboAssocDisallowedReasonCodePresent = true; in testMboAssocDisallowedIndInAssocRejectUpdatesRecentAssociationFailureStatus()
3674 assocRejectData.mboAssocDisallowedReason = MboAssocDisallowedReasonCode in testMboAssocDisallowedIndInAssocRejectUpdatesRecentAssociationFailureStatus()
[all …]