Home | History | Annotate | Download | only in telephony

Lines Matching refs:subId

79     public String getNaiForSubscriber(int subId, String callingPackage) {
80 Phone phone = getPhone(subId);
83 mContext, subId, callingPackage, "getNai")) {
88 loge("getNai phone is null for Subscription:" + subId);
93 public String getImeiForSubscriber(int subId, String callingPackage) {
94 Phone phone = getPhone(subId);
97 mContext, subId, callingPackage, "getImei")) {
102 loge("getDeviceId phone is null for Subscription:" + subId);
107 public ImsiEncryptionInfo getCarrierInfoForImsiEncryption(int subId, int keyType,
109 Phone phone = getPhone(subId);
112 mContext, subId, callingPackage,
118 loge("getCarrierInfoForImsiEncryption phone is null for Subscription:" + subId);
123 public void setCarrierInfoForImsiEncryption(int subId, String callingPackage,
125 Phone phone = getPhone(subId);
130 loge("setCarrierInfoForImsiEncryption phone is null for Subscription:" + subId);
139 * @param subId
142 public void resetCarrierKeysForImsiEncryption(int subId, String callingPackage) {
143 Phone phone = getPhone(subId);
149 loge("resetCarrierKeysForImsiEncryption phone is null for Subscription:" + subId);
159 public String getDeviceSvnUsingSubId(int subId, String callingPackage) {
160 Phone phone = getPhone(subId);
163 mContext, subId, callingPackage, "getDeviceSvn")) {
177 public String getSubscriberIdForSubscriber(int subId, String callingPackage) {
178 Phone phone = getPhone(subId);
181 mContext, subId, callingPackage, "getSubscriberId")) {
186 loge("getSubscriberId phone is null for Subscription:" + subId);
198 public String getIccSerialNumberForSubscriber(int subId, String callingPackage) {
199 Phone phone = getPhone(subId);
202 mContext, subId, callingPackage, "getIccSerialNumber")) {
207 loge("getIccSerialNumber phone is null for Subscription:" + subId);
216 public String getLine1NumberForSubscriber(int subId, String callingPackage) {
217 Phone phone = getPhone(subId);
221 mContext, subId, callingPackage, "getLine1Number")) {
226 loge("getLine1Number phone is null for Subscription:" + subId);
235 public String getLine1AlphaTagForSubscriber(int subId, String callingPackage) {
236 Phone phone = getPhone(subId);
239 mContext, subId, callingPackage, "getLine1AlphaTag")) {
244 loge("getLine1AlphaTag phone is null for Subscription:" + subId);
253 public String getMsisdnForSubscriber(int subId, String callingPackage) {
254 Phone phone = getPhone(subId);
257 mContext, subId, callingPackage, "getMsisdn")) {
262 loge("getMsisdn phone is null for Subscription:" + subId);
271 public String getVoiceMailNumberForSubscriber(int subId, String callingPackage) {
272 Phone phone = getPhone(subId);
275 mContext, subId, callingPackage, "getVoiceMailNumber")) {
282 loge("getVoiceMailNumber phone is null for Subscription:" + subId);
292 public String getCompleteVoiceMailNumberForSubscriber(int subId) {
293 Phone phone = getPhone(subId);
300 loge("getCompleteVoiceMailNumber phone is null for Subscription:" + subId);
309 public String getVoiceMailAlphaTagForSubscriber(int subId, String callingPackage) {
310 Phone phone = getPhone(subId);
313 mContext, subId, callingPackage, "getVoiceMailAlphaTag")) {
318 loge("getVoiceMailAlphaTag phone is null for Subscription:" + subId);
324 * get Phone object based on subId.
326 private Phone getPhone(int subId) {
327 int phoneId = SubscriptionManager.getPhoneId(subId);
339 private void enforcePrivilegedPermissionOrCarrierPrivilege(int subId, String message) {
346 TelephonyPermissions.enforceCallingOrSelfCarrierPrivilege(subId, message);
363 * get the Isim Impi based on subId
365 public String getIsimImpi(int subId) {
366 Phone phone = getPhone(subId);
377 loge("getIsimImpi phone is null for Subscription:" + subId);
383 * get the Isim Domain based on subId
385 public String getIsimDomain(int subId) {
386 Phone phone = getPhone(subId);
397 loge("getIsimDomain phone is null for Subscription:" + subId);
403 * get the Isim Impu based on subId
405 public String[] getIsimImpu(int subId) {
406 Phone phone = getPhone(subId);
417 loge("getIsimImpu phone is null for Subscription:" + subId);
423 * get the Isim Ist based on subId
425 public String getIsimIst(int subId) throws RemoteException {
426 Phone phone = getPhone(subId);
437 loge("getIsimIst phone is null for Subscription:" + subId);
443 * get the Isim Pcscf based on subId
445 public String[] getIsimPcscf(int subId) throws RemoteException {
446 Phone phone = getPhone(subId);
457 loge("getIsimPcscf phone is null for Subscription:" + subId);
462 public String getIccSimChallengeResponse(int subId, int appType, int authType, String data)
467 enforcePrivilegedPermissionOrCarrierPrivilege(subId, "getIccSimChallengeResponse");
468 Phone phone = getPhone(subId);
494 public String getGroupIdLevel1ForSubscriber(int subId, String callingPackage) {
495 Phone phone = getPhone(subId);
498 mContext, subId, callingPackage, "getGroupIdLevel1")) {
503 loge("getGroupIdLevel1 phone is null for Subscription:" + subId);