Searched refs:subId (Results 26 - 46 of 46) sorted by relevance

12

/frameworks/base/telephony/java/android/telephony/
H A DPhoneStateListener.java253 * own non-null Looper use PhoneStateListener(long subId, Looper looper) below.
256 public PhoneStateListener(long subId) { argument
257 this(subId, Looper.myLooper());
265 public PhoneStateListener(long subId, Looper looper) { argument
266 if (DBG) log("ctor: subId=" + subId + " looper=" + looper);
267 mSubId = subId;
H A DPhoneNumberUtils.java1565 * @param subId the subscription id of the SIM.
1571 public static boolean isEmergencyNumber(long subId, String number) { argument
1574 return isEmergencyNumberInternal(subId, number, true /* useExactMatch */);
1614 * @param subId the subscription id of the SIM.
1621 public static boolean isPotentialEmergencyNumber(long subId, String number) { argument
1624 return isEmergencyNumberInternal(subId, number, false /* useExactMatch */);
1654 * @param subId the subscription id of the SIM.
1670 private static boolean isEmergencyNumberInternal(long subId, String number, argument
1672 return isEmergencyNumberInternal(subId, number, null, useExactMatch);
1692 * @param subId th
1699 isEmergencyNumber(long subId, String number, String defaultCountryIso) argument
1751 isPotentialEmergencyNumber(long subId, String number, String defaultCountryIso) argument
1795 isEmergencyNumberInternal(long subId, String number, String defaultCountryIso, boolean useExactMatch) argument
1891 isLocalEmergencyNumber(Context context, long subId, String number) argument
1945 isPotentialLocalEmergencyNumber(Context context, long subId, String number) argument
1994 isLocalEmergencyNumberInternal(long subId, String number, Context context, boolean useExactMatch) argument
2037 isVoiceMailNumber(long subId, String number) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DMmsServiceBroker.java222 public void sendMessage(long subId, String callingPkg, Uri contentUri, argument
230 getServiceGuarded().sendMessage(subId, callingPkg, contentUri, locationUrl,
235 public void downloadMessage(long subId, String callingPkg, String locationUrl, argument
244 getServiceGuarded().downloadMessage(subId, callingPkg, locationUrl, contentUri,
262 public Bundle getCarrierConfigValues(long subId) throws RemoteException { argument
263 return getServiceGuarded().getCarrierConfigValues(subId);
363 public void sendStoredMessage(long subId, String callingPkg, Uri messageUri, argument
371 getServiceGuarded().sendStoredMessage(subId, callingPkg, messageUri, configOverrides,
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfo.java304 long subId = SubscriptionManager.getDefaultSubId();
305 return getCallerInfo(context, number, subId);
313 * @param subId the subscription for checking for if voice mail number or not
319 public static CallerInfo getCallerInfo(Context context, String number, long subId) { argument
330 } else if (PhoneNumberUtils.isVoiceMailNumber(subId, number)) {
421 long subId = SubscriptionManager.getDefaultSubId();
422 return markAsVoiceMail(subId);
426 /* package */ CallerInfo markAsVoiceMail(long subId) { argument
430 String voiceMailLabel = TelephonyManager.getDefault().getVoiceMailAlphaTag(subId);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsManager.java102 * A long value; the subId corresponding to the IMS service coming up or down.
155 * @param subId the subscription ID for the IMS Service
156 * @return the manager instance corresponding to the subId
158 public static ImsManager getInstance(Context context, long subId) { argument
160 if (sImsManagerInstances.containsKey(subId))
161 return sImsManagerInstances.get(subId);
163 ImsManager mgr = new ImsManager(context, subId);
164 sImsManagerInstances.put(subId, mgr);
195 private ImsManager(Context context, long subId) { argument
197 mSubId = subId;
548 getImsServiceName(long subId) argument
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java354 * @param subId the sub_id which the message belongs to
358 public static Uri addMessageToUri(long subId, ContentResolver resolver, argument
361 return addMessageToUri(subId, resolver, uri, address, body, subject,
400 * @param subId the sub_id which the message belongs to
404 public static Uri addMessageToUri(long subId, ContentResolver resolver, argument
408 Rlog.v(TAG,"Telephony addMessageToUri sub id: " + subId);
410 values.put(SUB_ID, subId);
536 * @param subId the sub_id which the message belongs to
540 public static Uri addMessage(long subId, ContentResolver resolver, argument
542 return addMessageToUri(subId, resolve
598 addMessage(long subId, ContentResolver resolver, String address, String body, String subject, Long date) argument
643 addMessage(long subId, ContentResolver resolver, String address, String body, String subject, Long date) argument
710 addMessage(long subId, ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneNotifier.java65 public void notifyOemHookRawEventForSubscriber(long subId, byte[] rawData); argument
H A DWapPushOverSms.java123 // Should we "abort" if no subId for now just no supplying extra param below
205 long subId = (subIds != null) && (subIds.length > 0) ? subIds[0] :
207 writeInboxMessage(subId, intentData);
305 private void writeInboxMessage(long subId, byte[] pushData) { argument
350 Bundle configs = SmsManager.getSmsManagerForSubscriber(subId)
H A DPhoneSubInfo.java272 public String getIccSimChallengeResponse(long subId, int appType, String data) { argument
273 // FIXME: use subId!!
H A DSMSDispatcher.java1411 protected Uri writeOutboxMessage(long subId, String address, String text, argument
1414 values.put(Telephony.Sms.SUB_ID, subId);
1439 protected void moveToOutbox(long subId, Uri messageUri, String creator) { argument
1441 values.put(Telephony.Sms.SUB_ID, subId);
H A DCommandsInterface.java1879 * @param subId
1887 public void setUiccSubscription(int slotId, int appIndex, int subId, int subStatus, argument
H A DBaseCommands.java821 public void setUiccSubscription(int slotId, int appIndex, int subId, int subStatus, argument
H A DRIL.java691 public void setUiccSubscription(int slotId, int appIndex, int subId, argument
698 + " subId: " + subId + " subStatus: " + subStatus);
702 rr.mParcel.writeInt(subId);
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsManager.java59 * A psuedo-subId that represents the default subId at any given time. The actual subId it
60 * represents changes as the default subId is changed.
69 /** A concrete subId, or the pseudo DEFAULT_SUB_ID */
466 * Get the the instance of the SmsManager associated with a particular subId
468 * @param subId a SMS subscription id, typically accessed using SubscriptionManager
469 * @return the instance of the SmsManager associated with subId
473 public static SmsManager getSmsManagerForSubscriber(long subId) { argument
476 SmsManager smsManager = sSubInstances.get(subId);
485 SmsManager(long subId) argument
[all...]
H A DCellBroadcastMessage.java53 * Indicates the subId
64 public void setSubId(long subId) { argument
65 mSubId = subId;
H A DSmsMessage.java102 /** Indicates the subId
112 public void setSubId(long subId) { argument
113 mSubId = subId;
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java100 || styleId == mStyleIDs.subId || styleId == mStyleIDs.supId
124 mStyleIDs.subId = styleId;
159 private int subId = -1; field in class:StringBlock.StyleIDs
202 } else if (type == ids.subId) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardProxy.java276 long[] subId = SubscriptionController.getInstance().getSubId(slotId);
278 if (subId[0] == SubscriptionController.getInstance().getDefaultSubId()) {
282 SubscriptionController.getInstance().setMccMnc(operator, subId[0]);
881 long[] subId = SubscriptionController.getInstance().getSubId(slotId);
882 TelephonyManager.setTelephonyProperty(property, subId[0], value);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMALTEPhone.java332 + " subId : " + mSubscriptionData.subId
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java1513 long subId = SubscriptionManager.getDefaultDataSubId();
1514 intent.putExtra(PhoneConstants.SUBSCRIPTION_KEY, subId);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java273 + " subId : " + mSubscriptionData.subId

Completed in 576 milliseconds

12