Lines Matching refs:slotIndex
249 public void onGsmCellBroadcastSms(int slotIndex, byte[] message) { in onGsmCellBroadcastSms() argument
250 sendMessage(EVENT_NEW_SMS_MESSAGE, slotIndex, -1, message); in onGsmCellBroadcastSms()
260 public String getCellBroadcastAreaInfo(int slotIndex) { in getCellBroadcastAreaInfo() argument
263 info = mAreaInfos.get(slotIndex); in getCellBroadcastAreaInfo()
275 public void setCellBroadcastAreaInfo(int slotIndex, String info) { in setCellBroadcastAreaInfo() argument
277 mAreaInfos.put(slotIndex, info); in setCellBroadcastAreaInfo()
293 private Resources getResourcesForSlot(int slotIndex) { in getResourcesForSlot() argument
295 int subId = getSubIdForPhone(mContext, slotIndex); in getResourcesForSlot()
313 GeoFencingTriggerMessage geoFencingTriggerMessage, int slotIndex) { in handleGeoFencingTriggerMessage() argument
317 Resources res = getResourcesForSlot(slotIndex); in handleGeoFencingTriggerMessage()
410 slotIndex, calculator); in handleGeoFencingTriggerMessage()
413 calculator, location, slotIndex, accuracy); in handleGeoFencingTriggerMessage()
429 cbMessages.get(i), cbMessageUris.get(i), slotIndex); in handleGeoFencingTriggerMessage()
444 private boolean handleAreaInfoMessage(int slotIndex, SmsCbMessage message) { in handleAreaInfoMessage() argument
452 String info = mAreaInfos.get(slotIndex); in handleAreaInfoMessage()
457 mAreaInfos.put(slotIndex, message.getMessageBody()); in handleAreaInfoMessage()
466 intent.putExtra(SubscriptionManager.EXTRA_SLOT_INDEX, slotIndex); in handleAreaInfoMessage()
487 int slotIndex = message.arg1; in handleSmsMessage() local
500 return handleGeoFencingTriggerMessage(triggerMessage, slotIndex); in handleSmsMessage()
503 SmsCbMessage cbMessage = handleGsmBroadcastSms(header, pdu, slotIndex); in handleSmsMessage()
511 if (handleAreaInfoMessage(slotIndex, cbMessage)) { in handleSmsMessage()
582 private @Nullable Pair<Integer, Integer> getLacAndCid(int slotIndex) { in getLacAndCid() argument
584 tm.createForSubscriptionId(getSubIdForPhone(mContext, slotIndex)); in getLacAndCid()
631 int slotIndex) { in handleGsmBroadcastSms() argument
651 tm.createForSubscriptionId(getSubIdForPhone(mContext, slotIndex)); in handleGsmBroadcastSms()
656 Pair<Integer, Integer> lacAndCid = getLacAndCid(slotIndex); in handleGsmBroadcastSms()
714 return GsmSmsCbMessage.createSmsCbMessage(mContext, header, location, pdus, slotIndex); in handleGsmBroadcastSms()