Home | History | Annotate | Download | only in telephony

Lines Matching defs:mPhones

62     private Phone[] mPhones;
122 mPhones = phone;
127 mUiccPhoneBookController = new UiccPhoneBookController(mPhones);
128 mPhoneSubInfoController = new PhoneSubInfoController(mContext, mPhones);
130 mSetRadioAccessFamilyStatus = new int[mPhones.length];
131 mNewRadioAccessFamily = new int[mPhones.length];
132 mOldRadioAccessFamily = new int[mPhones.length];
133 mCurrentLogicalModemIds = new String[mPhones.length];
134 mNewLogicalModemIds = new String[mPhones.length];
143 for (int i = 0; i < mPhones.length; i++) {
144 mPhones[i].registerForRadioCapabilityChanged(
151 mPhones[sub].updateDataConnectionTracker();
155 mPhones[sub].setInternalDataEnabled(true, null);
160 mPhones[sub].setInternalDataEnabled(false, dataCleanedUpMsg);
164 mPhones[sub].updateCurrentCarrierInProvider();
171 mPhones[phoneId].registerForAllDataDisconnected(h, what, obj);
179 mPhones[phoneId].unregisterForAllDataDisconnected(h);
187 return mPhones[phoneId].mDcTracker.isDisconnected();
201 if (phoneId >= mPhones.length) {
204 return mPhones[phoneId].getRadioAccessFamily();
217 if (rafs.length != mPhones.length) {
223 for (int i = 0; i < mPhones.length; i++) {
234 for (int i = 0; i < mPhones.length; i++) {
235 if (mPhones[i].getRadioAccessFamily() != rafs[i].getRadioAccessFamily()) {
271 mOldRadioAccessFamily[phoneId] = mPhones[phoneId].getRadioAccessFamily();
274 // int supportedRaf = mPhones[i].getRadioAccessFamily();
278 mCurrentLogicalModemIds[phoneId] = mPhones[phoneId].getModemUuId();
384 for (int i = 0; i < mPhones.length; i++) {
458 mPhones[id].radioCapabilityUpdated(rc);
500 for (int i = 0; i < mPhones.length; i++) {
521 for (int i = 0; i < mPhones.length; i++) {
551 for (int i = 0; i < mPhones.length; i++) {
552 int raf = mPhones[i].getRadioAccessFamily();
571 RadioAccessFamily[] rafs = new RadioAccessFamily[mPhones.length];
572 for (int phoneId = 0; phoneId < mPhones.length; phoneId++) {
586 for (int i = 0; i < mPhones.length; i++) {
601 mRadioAccessFamilyStatusCounter = mPhones.length;
608 mPhones[phoneId].setRadioCapability(
615 int[] numRafSupported = new int[mPhones.length];
619 for (int len = 0; len < mPhones.length; len++) {
620 numRafSupported[len] = Integer.bitCount(mPhones[len].getRadioAccessFamily());
623 maxRaf = mPhones[len].getRadioAccessFamily();
633 int[] numRafSupported = new int[mPhones.length];
637 for (int len = 0; len < mPhones.length; len++) {
638 numRafSupported[len] = Integer.bitCount(mPhones[len].getRadioAccessFamily());
641 minRaf = mPhones[len].getRadioAccessFamily();
652 for (int phoneId = 0; phoneId < mPhones.length; phoneId++) {
653 if (mPhones[phoneId].getRadioAccessFamily() == raf) {
654 modemUuid = mPhones[phoneId].getModemUuId();