Lines Matching refs:slotId
65 int slotId = in onReceive() local
80 context, currentSubId, slotId, dependencies.jobManager, result)); in onReceive()
90 Context context, int currentSubId, int slotId, JobManager jobManager, in handleCarrierConfigChanged() argument
98 if (isBootUp(context, slotId)) { in handleCarrierConfigChanged()
110 int lastSubId = getAndSetSubId(context, currentSubId, slotId); in handleCarrierConfigChanged()
113 "SubId for slot " + slotId + " changed: " + lastSubId + " -> " + currentSubId); in handleCarrierConfigChanged()
134 boolean isBootUp(Context context, int slotId) { in isBootUp() argument
137 int lastBootCount = preferences.getInt(KEY_LAST_BOOT_COUNT + slotId, 0); in isBootUp()
141 preferences.edit().putInt(KEY_LAST_BOOT_COUNT + slotId, currentBootCount).apply(); in isBootUp()
146 private int getAndSetSubId(Context context, int currentSubId, int slotId) { in getAndSetSubId() argument
150 KEY_LAST_SUB_ID + slotId, SubscriptionManager.INVALID_SUBSCRIPTION_ID); in getAndSetSubId()
151 preferences.edit().putInt(KEY_LAST_SUB_ID + slotId, currentSubId).apply(); in getAndSetSubId()