Searched refs:assocRejectData (Results 1 – 6 of 6) sorted by relevance
47 public AssocRejectEventInfo(AssociationRejectionData assocRejectData) { in AssocRejectEventInfo() argument48 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()
110 public void onAssociationRejected_1_4(AssociationRejectionData assocRejectData) { in onAssociationRejected_1_4() argument113 mCallbackV10.onAssociationRejected(assocRejectData); in onAssociationRejected_1_4()
340 .ISupplicantStaIfaceCallback.AssociationRejectionData assocRejectData) { in onAssociationRejected() argument341 AssocRejectEventInfo assocRejectInfo = new AssocRejectEventInfo(assocRejectData); in onAssociationRejected()
168 * @param assocRejectData Association Rejection related information.170 oneway onAssociationRejected_1_4(AssociationRejectionData assocRejectData);
3423 AssociationRejectionData assocRejectData = new AssociationRejectionData(); in testAssociationRejectionCallback_1_4() local3424 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 …]
3644 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 …]