Home
last modified time | relevance | path

Searched refs:newActivePhones (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/vendor/
DVendorPhoneSwitcher.java333 List<Integer> newActivePhones = new ArrayList<Integer>(); in onEvaluate() local
339 if (newActivePhones.contains(phoneIdForRequest)) continue; in onEvaluate()
340 newActivePhones.add(phoneIdForRequest); in onEvaluate()
341 if (newActivePhones.size() >= mMaxDataAttachModemCount) break; in onEvaluate()
351 for (Integer i : newActivePhones) log(" " + i); in onEvaluate()
354 mNewActivePhones = newActivePhones; in onEvaluate()
356 if (!newActivePhones.contains(phoneId)) { in onEvaluate()
366 for (int phoneId : newActivePhones) { in onEvaluate()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DPhoneSwitcher.java846 List<Integer> newActivePhones = new ArrayList<Integer>(); in onEvaluate() local
855 newActivePhones.add(i); in onEvaluate()
860 newActivePhones.add(mPhoneIdInVoiceCall); in onEvaluate()
863 if (newActivePhones.size() < mMaxDataAttachModemCount) { in onEvaluate()
867 if (newActivePhones.contains(phoneIdForRequest)) continue; in onEvaluate()
868 newActivePhones.add(phoneIdForRequest); in onEvaluate()
869 if (newActivePhones.size() >= mMaxDataAttachModemCount) break; in onEvaluate()
873 if (newActivePhones.size() < mMaxDataAttachModemCount in onEvaluate()
874 && newActivePhones.contains(mPreferredDataPhoneId) in onEvaluate()
876 newActivePhones.add(mPreferredDataPhoneId); in onEvaluate()
[all …]