Home
last modified time | relevance | path

Searched refs:bandList (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaIfaceCallbackHidlV1_3Impl.java212 ArrayList<Short> bandList) { in onDppFailure_1_3() argument
214 onDppFailureInternal_1_3(halToFrameworkDppFailureCode(code), ssid, channelList, bandList); in onDppFailure_1_3() local
218 ArrayList<Short> bandList) { in onDppFailureInternal_1_3() argument
223 if (bandList != null) { in onDppFailureInternal_1_3()
224 bandListArray = new int[bandList.size()]; in onDppFailureInternal_1_3()
226 for (int i = 0; i < bandList.size(); i++) { in onDppFailureInternal_1_3()
227 bandListArray[i] = bandList.get(i).intValue(); in onDppFailureInternal_1_3()
DDppManager.java108 public void onFailure(int dppStatusCode, String ssid, String channelList, int[] bandList) {
110 DppManager.this.onFailure(dppStatusCode, ssid, channelList, bandList);
977 private void onFailure(int dppStatusCode, String ssid, String channelList, int[] bandList) { in onFailure() argument
1065 if (bandList == null) { in onFailure()
1066 bandList = new int[0]; in onFailure()
1068 mDppRequestInfo.callback.onFailure(dppFailureCode, ssid, channelList, bandList); in onFailure()
DSupplicantStaIfaceCallbackHidlV1_4Impl.java243 ArrayList<Short> bandList) { in onDppFailure_1_3() argument
245 halToFrameworkDppFailureCode(code), ssid, channelList, bandList); in onDppFailure_1_3() local
DSupplicantStaIfaceCallbackAidlImpl.java622 public void onDppFailure(int code, String ssid, String channelList, char[] bandList) { in onDppFailure() argument
627 if (bandList != null) { in onDppFailure()
628 bandListArray = new int[bandList.length]; in onDppFailure()
630 for (int i = 0; i < bandList.length; i++) { in onDppFailure()
631 bandListArray[i] = bandList[i]; in onDppFailure()
DWifiNative.java3270 void onFailure(int dppStatusCode, String ssid, String channelList, int[] bandList);
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DDppManagerTest.java879 int[] bandList = new int[]{81, 83, 84, 115}; in testOnFailureCallbackCannotFindNetworkNoErrCodeChangeOnChannelMatch() local
884 bandList, EASY_CONNECT_EVENT_FAILURE_CANNOT_FIND_NETWORK); in testOnFailureCallbackCannotFindNetworkNoErrCodeChangeOnChannelMatch()
893 int[] bandList = new int[]{81, 83, 84, 115}; in testOnFailureCallbackCannotFindNetworkErrCodeIsUpdatedOnChannelMismatch() local
898 bandList, EASY_CONNECT_EVENT_FAILURE_ENROLLEE_FAILED_TO_SCAN_NETWORK_CHANNEL); in testOnFailureCallbackCannotFindNetworkErrCodeIsUpdatedOnChannelMismatch()
905 int[] bandList = new int[]{81, 83, 84, 115}; in testCannotFindNetworkErrCodeIsUpdatedToNotCompatibleOnSdkLevelLessThanS() local
910 bandList, EASY_CONNECT_EVENT_FAILURE_NOT_COMPATIBLE); in testCannotFindNetworkErrCodeIsUpdatedToNotCompatibleOnSdkLevelLessThanS()
919 int[] bandList = new int[]{81, 83, 84, 115}; in testCannotFindNetworkErrCodeIsUpdatedToNotCompatibleOnTargetSdkLessThanS() local
924 bandList, EASY_CONNECT_EVENT_FAILURE_NOT_COMPATIBLE); in testCannotFindNetworkErrCodeIsUpdatedToNotCompatibleOnTargetSdkLessThanS()
930 int[] bandList = new int[]{81, 83, 84}; in testOnFailureCallbackCannotFindNetworkNoErrCodeChangeOnInvalidScannedChannelList() local
935 bandList, EASY_CONNECT_EVENT_FAILURE_CANNOT_FIND_NETWORK); in testOnFailureCallbackCannotFindNetworkNoErrCodeChangeOnInvalidScannedChannelList()
[all …]
DWifiServiceImplTest.java718 public void onFailure(int status, String ssid, String channelList, int[] bandList) in setUp()