Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DDppManagerTest.java837 int[] bandList = new int[]{81, 83, 84, 115}; in testOnFailureCallbackCannotFindNetworkNoErrCodeChangeOnChannelMatch() local
842 bandList, EASY_CONNECT_EVENT_FAILURE_CANNOT_FIND_NETWORK); in testOnFailureCallbackCannotFindNetworkNoErrCodeChangeOnChannelMatch()
851 int[] bandList = new int[]{81, 83, 84, 115}; in testOnFailureCallbackCannotFindNetworkErrCodeIsUpdatedOnChannelMismatch() local
856 bandList, EASY_CONNECT_EVENT_FAILURE_ENROLLEE_FAILED_TO_SCAN_NETWORK_CHANNEL); in testOnFailureCallbackCannotFindNetworkErrCodeIsUpdatedOnChannelMismatch()
863 int[] bandList = new int[]{81, 83, 84, 115}; in testCannotFindNetworkErrCodeIsUpdatedToNotCompatibleOnSdkLevelLessThanS() local
868 bandList, EASY_CONNECT_EVENT_FAILURE_NOT_COMPATIBLE); in testCannotFindNetworkErrCodeIsUpdatedToNotCompatibleOnSdkLevelLessThanS()
877 int[] bandList = new int[]{81, 83, 84, 115}; in testCannotFindNetworkErrCodeIsUpdatedToNotCompatibleOnTargetSdkLessThanS() local
882 bandList, EASY_CONNECT_EVENT_FAILURE_NOT_COMPATIBLE); in testCannotFindNetworkErrCodeIsUpdatedToNotCompatibleOnTargetSdkLessThanS()
888 int[] bandList = new int[]{81, 83, 84}; in testOnFailureCallbackCannotFindNetworkNoErrCodeChangeOnInvalidScannedChannelList() local
893 bandList, EASY_CONNECT_EVENT_FAILURE_CANNOT_FIND_NETWORK); in testOnFailureCallbackCannotFindNetworkNoErrCodeChangeOnInvalidScannedChannelList()
[all …]
DWifiServiceImplTest.java533 public void onFailure(int status, String ssid, String channelList, int[] bandList) in setUp()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaIfaceCallbackV1_3Impl.java199 ArrayList<Short> bandList) { in onDppFailure_1_3() argument
204 if (bandList != null) { in onDppFailure_1_3()
205 bandListArray = new int[bandList.size()]; in onDppFailure_1_3()
207 for (int i = 0; i < bandList.size(); i++) { in onDppFailure_1_3()
208 bandListArray[i] = bandList.get(i).intValue(); in onDppFailure_1_3()
DDppManager.java104 public void onFailure(int dppStatusCode, String ssid, String channelList, int[] bandList) {
106 DppManager.this.onFailure(dppStatusCode, ssid, channelList, bandList);
810 private void onFailure(int dppStatusCode, String ssid, String channelList, int[] bandList) { in onFailure() argument
898 if (bandList == null) { in onFailure()
899 bandList = new int[0]; in onFailure()
901 mDppRequestInfo.callback.onFailure(dppFailureCode, ssid, channelList, bandList); in onFailure()
DSupplicantStaIfaceCallbackV1_4Impl.java208 ArrayList<Short> bandList) { in onDppFailure_1_3() argument
209 mCallbackV13.onDppFailure_1_3(code, ssid, channelList, bandList); in onDppFailure_1_3()
DWifiNative.java2848 void onFailure(int dppStatusCode, String ssid, String channelList, int[] bandList);