diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2018-06-02 00:30:34 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-06-02 00:30:34 +0000 |
commit | 7b0164f58cce4dc294bfe5604c05fc91b386647b (patch) | |
tree | de57b0277ac060a93d321358f87c7dd539c0ce6d /service | |
parent | e3e85bde7e43a65beaceceb18cb54625e7cd839d (diff) | |
parent | 3135402748487080c61e34b08cc2ab4991e52a56 (diff) |
Merge "Revert "[HDM] Add API to check for STA+AP concurrency"" into pi-dev
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/HalDeviceManager.java | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/service/java/com/android/server/wifi/HalDeviceManager.java b/service/java/com/android/server/wifi/HalDeviceManager.java index f570ffcb5..3c61217d7 100644 --- a/service/java/com/android/server/wifi/HalDeviceManager.java +++ b/service/java/com/android/server/wifi/HalDeviceManager.java @@ -204,16 +204,6 @@ public class HalDeviceManager { return getSupportedIfaceTypesInternal(chip); } - /** - * Checks whether the device (the combination of all Wi-Fi chips on the device) supports a - * concurrent combination of 1 or more STAs and 1 or more APs. - * - * @return true if STA+AP concurrency is supported, false otherwise. - */ - public boolean isConcurrentStaPlusApSupported() { - return isConcurrentStaPlusApSupportedInternal(); - } - // interface-specific behavior /** @@ -1323,49 +1313,6 @@ public class HalDeviceManager { return results; } - private boolean isConcurrentStaPlusApSupportedInternal() { - if (mDbg) Log.d(TAG, "isConcurrentStaPlusApSupportedInternal"); - - synchronized (mLock) { - WifiChipInfo[] chipInfos = getAllChipInfo(); - if (chipInfos == null) { - Log.e(TAG, "isConcurrentStaPlusApSupportedInternal: no chip info found"); - stopWifi(); // major error: shutting down - return false; - } - - if (!validateInterfaceCache(chipInfos)) { - Log.e(TAG, "isConcurrentStaPlusApSupportedInternal: local cache is invalid!"); - stopWifi(); // major error: shutting down - return false; - } - - // check whether any chip individually supports AP+STA - // TODO b/80270202: this does not fully handle multi-chip behavior - for (WifiChipInfo chipInfo : chipInfos) { - for (IWifiChip.ChipMode chipMode : chipInfo.availableModes) { - for (IWifiChip.ChipIfaceCombination chipIfaceCombo : chipMode - .availableCombinations) { - int[][] expandedIfaceCombos = expandIfaceCombos(chipIfaceCombo); - if (VDBG) { - Log.d(TAG, chipIfaceCombo + " expands to " + Arrays.deepToString( - expandedIfaceCombos)); - } - - for (int[] expandedIfaceCombo : expandedIfaceCombos) { - if (expandedIfaceCombo[IfaceType.STA] > 0 - && expandedIfaceCombo[IfaceType.AP] > 0) { - return true; - } - } - } - } - } - } - - return false; - } - private IWifiIface createIface(int ifaceType, boolean lowPriority, InterfaceDestroyedListener destroyedListener, Handler handler) { if (mDbg) { |