Home
last modified time | relevance | path

Searched refs:slotId (Results 1 – 16 of 16) sorted by relevance

/packages/apps/Stk/src/com/android/stk/
DStkAppService.java247 int slotId; field in StkAppService.DelayedCmd
249 DelayedCmd(int id, CatCmdMessage msg, int slotId) { in DelayedCmd() argument
252 this.slotId = slotId; in DelayedCmd()
301 int slotId = 0; in onStart() local
304 slotId = args.getInt(SLOT_ID); in onStart()
306 CatLog.d(LOG_TAG, "onStart sim id: " + slotId + ", op: " + op + ", *****"); in onStart()
307 if ((slotId >= 0 && slotId < mSimCount) && mStkService[slotId] == null) { in onStart()
308 mStkService[slotId] = CatService.getInstance(slotId); in onStart()
309 if (mStkService[slotId] == null) { in onStart()
310 CatLog.d(LOG_TAG, "mStkService is: " + mStkContext[slotId].mStkServiceState); in onStart()
[all …]
DStkMain.java95 private void launchSTKMainMenu(int slotId) { in launchSTKMainMenu() argument
100 , PhoneConstants.SIM_ID_1 + slotId); in launchSTKMainMenu()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DImeiInformation.java59 for (int slotId = 0; slotId < slotCount; slotId ++) { in initPreferenceScreen()
61 setPreferenceValue(slotId); in initPreferenceScreen()
62 setNewKey(slotId); in initPreferenceScreen()
106 private void setNewKey(int slotId) { in setNewKey() argument
113 key = "_" + key + String.valueOf(slotId); in setNewKey()
115 updateTitle(pref, slotId); in setNewKey()
120 private void updateTitle(Preference pref, int slotId) { in updateTitle() argument
125 title += " " + getResources().getString(R.string.slot_number, slotId + 1); in updateTitle()
DSimStatus.java415 final int slotId = Integer.parseInt(tabId);
416 mSir = mSelectableSubInfos.get(slotId);
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java101 int slotId = SubscriptionManager.INVALID_SIM_SLOT_INDEX; in registerPstnPhoneAccount() local
134 slotId = record.getSimSlotIndex(); in registerPstnPhoneAccount()
140 if (SubscriptionManager.isValidSlotId(slotId)) { in registerPstnPhoneAccount()
141 slotIdString = Integer.toString(slotId); in registerPstnPhoneAccount()
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DSubscriptionListData.java69 final int slotId = selfParticipantData.getDisplaySlotId(); in fromSelfParticipantData() local
70 final String iconIdentifier = String.format(Locale.getDefault(), "%d", slotId); in fromSelfParticipantData()
73 context.getString(R.string.sim_slot_identifier, slotId) : subscriptionName; in fromSelfParticipantData()
DParticipantData.java386 final int slotId = subscriptionInfo.getSimSlotIndex(); in updateSubscriptionInfoForSelfIfChanged() local
389 if (mSlotId != slotId || mSubscriptionColor != color || mSubscriptionName != name) { in updateSubscriptionInfoForSelfIfChanged()
390 mSlotId = slotId; in updateSubscriptionInfoForSelfIfChanged()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastSettings.java592 final int slotId = Integer.parseInt(tabId);
593 mSir = mSelectableSubInfos.get(slotId);
611 public SubscriptionInfo findRecordBySlotId(Context context, final int slotId) { in findRecordBySlotId() argument
619 if (sir.getSimSlotIndex() == slotId) { in findRecordBySlotId()
/packages/apps/Settings/src/com/android/settings/sim/
DSimSettings.java261 public SimPreference(Context context, SubscriptionInfo subInfoRecord, int slotId) { in SimPreference() argument
266 mSlotId = slotId; in SimPreference()
DSimDialogActivity.java80 private void displayPreferredDialog(final int slotId) { in displayPreferredDialog() argument
84 .getActiveSubscriptionInfoForSimSlotIndex(slotId); in displayPreferredDialog()
/packages/apps/Settings/src/com/android/settings/
DIccLockSettings.java479 final int slotId = Integer.parseInt(tabId);
481 .getActiveSubscriptionInfoForSimSlotIndex(slotId);
DDataUsageSummary.java907 final int slotId = Integer.parseInt(mCurrentTab.substring(TAB_MOBILE.length(), in updateBody() local
910 .getActiveSubscriptionInfoForSimSlotIndex(slotId); in updateBody()
2565 final int slotId = SubscriptionManager.getSlotId(subId); in hasReadyMobileRadio() local
2566 final boolean isReady = tele.getSimState(slotId) == SIM_STATE_READY; in hasReadyMobileRadio()
/packages/apps/Messaging/src/android/support/v7/mms/
DMmsHttpClient.java492 private String getNaiBySystemApi(final int slotId) { in getNaiBySystemApi() argument
496 return (String) method.invoke(mTelephonyManager, slotId); in getNaiBySystemApi()
/packages/services/Telephony/src/com/android/phone/
DMobileNetworkSettings.java391 private void updatePhone(int slotId) { in updatePhone() argument
393 .getActiveSubscriptionInfoForSimSlotIndex(slotId); in updatePhone()
402 if (DBG) log("updatePhone:- slotId=" + slotId + " sir=" + sir); in updatePhone()
DPhoneInterfaceManager.java1894 public boolean hasIccCardUsingSlotId(int slotId) { in hasIccCardUsingSlotId() argument
1895 int subId[] = mSubscriptionController.getSubIdUsingSlotId(slotId); in hasIccCardUsingSlotId()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DParticipantRefresh.java344 static String getUpdateSelfParticipantSubscriptionInfoSql(final int slotId, in getUpdateSelfParticipantSubscriptionInfoSql() argument
348 slotId, subscriptionColor, subscriptionName, where); in getUpdateSelfParticipantSubscriptionInfoSql()