HomeSort by relevance Sort by last modified time
    Searched refs:mSimCount (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
RilMessageDecoder.java 44 private static int mSimCount = 0;
61 mSimCount = TelephonyManager.getDefault().getSimCount();
62 mInstance = new RilMessageDecoder[mSimCount];
63 for (int i = 0; i < mSimCount; i++) {
68 if (slotId != SubscriptionManager.INVALID_SIM_SLOT_INDEX && slotId < mSimCount) {
  /packages/apps/Stk/src/com/android/stk/
StkAppService.java 161 private int mSimCount = 0;
258 mSimCount = TelephonyManager.from(mContext).getSimCount();
259 CatLog.d(LOG_TAG, "simCount: " + mSimCount);
260 mStkService = new AppInterface[mSimCount];
261 mStkContext = new StkContext[mSimCount];
265 for (i = 0; i < mSimCount; i++) {
300 if ((slotId >= 0 && slotId < mSimCount) && mStkService[slotId] == null) {
307 for (i = PhoneConstants.SIM_ID_1; i < mSimCount; i++) {
317 if (i == mSimCount) {
380 if (slotId >= 0 && slotId < mSimCount) {
    [all...]

Completed in 704 milliseconds