Lines Matching refs:subId

1565      * @param subId the subscription id of the SIM.
1571 public static boolean isEmergencyNumber(long subId, String number) {
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) {
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,
1672 return isEmergencyNumberInternal(subId, number, null, useExactMatch);
1692 * @param subId the subscription id of the SIM.
1699 public static boolean isEmergencyNumber(long subId, String number, String defaultCountryIso) {
1700 return isEmergencyNumberInternal(subId, number,
1743 * @param subId the subscription id of the SIM.
1751 public static boolean isPotentialEmergencyNumber(long subId, String number,
1753 return isEmergencyNumberInternal(subId, number,
1783 * @param subId the subscription id of the SIM.
1795 private static boolean isEmergencyNumberInternal(long subId, String number,
1817 int slotId = SubscriptionManager.getSlotId(subId);
1884 * @param subId the subscription id of the SIM.
1891 public static boolean isLocalEmergencyNumber(Context context, long subId, String number) {
1892 return isLocalEmergencyNumberInternal(subId, number,
1937 * @param subId the subscription id of the SIM.
1945 public static boolean isPotentialLocalEmergencyNumber(Context context, long subId,
1947 return isLocalEmergencyNumberInternal(subId, number,
1981 * @param subId the subscription id of the SIM.
1994 private static boolean isLocalEmergencyNumberInternal(long subId, String number,
2008 return isEmergencyNumberInternal(subId, number, countryIso, useExactMatch);
2030 * @param subId the subscription id of the SIM.
2037 public static boolean isVoiceMailNumber(long subId, String number) {
2041 vmNumber = TelephonyManager.getDefault().getVoiceMailNumber(subId);