Lines Matching refs:mConfigs
61 private Config mConfigs[] = null; field in StkMenuConfig
93 if (DBG) CatLog.d(LOG_TAG, "getLabel: " + mConfigs[slotId].label + ", slot id: " + slotId); in getLabel()
94 return mConfigs[slotId].label; in getLabel()
104 if (mConfigs[slotId].icon != null) { in getIcon()
105 int resId = mContext.getResources().getIdentifier(mConfigs[slotId].icon, in getIcon()
110 if (DBG) CatLog.d(LOG_TAG, "getIcon: " + mConfigs[slotId].icon + ", slot id: " + slotId); in getIcon()
120 mConfigs[slotId] = NO_CONFIG; in findConfig()
128 mConfigs[slotId] = NO_CONFIG; in findConfig()
135 if (mConfigs[slotId] != null && mConfigs[slotId].mcc == mcc in findConfig()
136 && mConfigs[slotId].mnc == mnc) { in findConfig()
144 mConfigs[slotId] = config; in findConfig()
149 mConfigs[slotId] = new Config(mcc, mnc, null, null); in findConfig()
155 mConfigs = new Config[TelephonyManager.from(mContext).getSimCount()]; in initialize()