Home | History | Annotate | Download | only in stk

Lines Matching refs:Config

53     private static final Config NO_CONFIG = new Config(0, 0, null, null);
59 private ArrayList<Config> mArray;
60 private Config mConfigs[] = null;
62 private static class Config {
68 public Config(int mcc, int mnc, String label, String icon) {
133 if (DBG) CatLog.d(LOG_TAG, "Return the cached config, slot id: " + slotId);
137 if (DBG) CatLog.d(LOG_TAG, "Find config and create the cached config, slot id: " + slotId);
138 for (Config config : mArray) {
139 if ((config.mcc == mcc) && (config.mnc == mnc)) {
140 mConfigs[slotId] = config;
145 mConfigs[slotId] = new Config(mcc, mnc, null, null);
150 mArray = new ArrayList<Config>();
151 mConfigs = new Config[TelephonyManager.from(mContext).getSimCount()];
175 Config config = new Config(mcc, mnc, label, icon);
176 mArray.add(config);