HomeSort by relevance Sort by last modified time
    Searched refs:subId (Results 1 - 25 of 272) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/base/telephony/java/com/android/internal/telephony/
IPhoneSubInfo.aidl 35 String getNaiForSubscriber(int subId, String callingPackage);
46 String getImeiForSubscriber(int subId, String callingPackage);
55 * Retrieves the software version number of a subId for the device, e.g., IMEI/SV
58 String getDeviceSvnUsingSubId(int subId, String callingPackage);
66 * Retrieves the unique subscriber ID of a given subId, e.g., IMSI for GSM phones.
68 String getSubscriberIdForSubscriber(int subId, String callingPackage);
71 * Retrieves the Group Identifier Level1 for GSM phones of a subId.
73 String getGroupIdLevel1ForSubscriber(int subId, String callingPackage);
81 * Retrieves the serial number of a given subId.
83 String getIccSerialNumberForSubscriber(int subId, String callingPackage)
    [all...]
ICarrierConfigLoader.aidl 26 PersistableBundle getConfigForSubId(int subId);
28 void notifyConfigChangedForSubId(int subId);
ITelephony.aidl 85 * End call on particular subId or go to the Home screen
86 * @param subId user preferred subId.
89 boolean endCallForSubscriber(int subId);
109 * Answer the currently-ringing call on particular subId .
123 void answerRingingCallForSubscriber(int subId);
146 * Check if a particular subId has an active or holding call
148 * @param subId user preferred subId.
152 boolean isOffhookForSubscriber(int subId, String callingPackage)
    [all...]
ISub.aidl 38 * Get the active SubscriptionInfo with the subId key
39 * @param subId The unique SubscriptionInfo key in database
43 SubscriptionInfo getActiveSubscriptionInfo(int subId, String callingPackage);
121 * @param subId the unique SubscriptionInfo index in database
124 int setIconTint(int tint, int subId);
129 * @param subId the unique SubscriptionInfo index in database
132 int setDisplayName(String displayName, int subId);
137 * @param subId the unique SubscriptionInfo index in database
141 int setDisplayNameUsingSrc(String displayName, int subId, long nameSource);
144 * Set phone number by subId
    [all...]
ISms.aidl 40 * @param subId the subId id.
43 List<SmsRawData> getAllMessagesFromIccEfForSubscriber(in int subId, String callingPkg);
53 * @param subId the subId id.
57 boolean updateMessageOnIccEfForSubscriber(in int subId, String callingPkg,
66 * @param subId the subId id.
70 boolean copyMessageToIccEfForSubscriber(in int subId, String callingPkg, int status,
95 * @param subId the subId id
    [all...]
ITelephonyRegistry.aidl 37 void listenForSubscriber(in int subId, String pkg, IPhoneStateListener callback, int events,
40 void notifyCallStateForPhoneId(in int phoneId, in int subId, int state, String incomingNumber);
41 void notifyServiceStateForPhoneId(in int phoneId, in int subId, in ServiceState state);
42 void notifySignalStrengthForPhoneId(in int phoneId, in int subId,
44 void notifyMessageWaitingChangedForPhoneId(in int phoneId, in int subId, in boolean mwi);
46 void notifyCallForwardingChangedForSubscriber(in int subId, boolean cfi);
48 void notifyDataActivityForSubscriber(in int subId, int state);
52 void notifyDataConnectionForSubscriber(int subId, int state, boolean isDataConnectivityPossible,
56 void notifyDataConnectionFailedForSubscriber(int subId, String reason, String apnType);
58 void notifyCellLocationForSubscriber(in int subId, in Bundle cellLocation)
    [all...]
TelephonyPermissions.java 52 * READ_PHONE_STATE runtime permission, or carrier privileges on the given subId.
67 * @param subId the subId of the relevant subscription; used to check carrier privileges. May be
73 Context context, int subId, String callingPackage, String message) {
74 return checkReadPhoneState(context, subId, Binder.getCallingPid(), Binder.getCallingUid(),
84 * READ_PHONE_STATE runtime permission, or carrier privileges on the given subId.
100 Context context, int subId, int pid, int uid, String callingPackage, String message) {
102 context, TELEPHONY_SUPPLIER, subId, pid, uid, callingPackage, message);
107 Context context, Supplier<ITelephony> telephonySupplier, int subId, int pid, int uid,
122 if (SubscriptionManager.isValidSubscriptionId(subId)) {
    [all...]
  /external/lzma/CPP/7zip/
IDecl.h 18 #define DECL_INTERFACE_SUB(i, base, groupId, subId) \
23 0, 0, 0, (groupId), 0, (subId), 0, 0); \
26 #define DECL_INTERFACE(i, groupId, subId) DECL_INTERFACE_SUB(i, IUnknown, groupId, subId)
  /frameworks/base/telephony/java/android/telephony/mbms/vendor/
IMbmsStreamingService.aidl 29 int initialize(IMbmsStreamingSessionCallback callback, int subId);
31 int requestUpdateStreamingServices(int subId, in List<String> serviceClasses);
33 int startStreaming(int subId, String serviceId,
36 Uri getPlaybackUri(int subId, String serviceId);
38 void stopStreaming(int subId, String serviceId);
40 void dispose(int subId);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneSubInfoController.java 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);
    [all...]
UiccSmsController.java 51 private Phone getPhone(int subId) {
52 Phone phone = PhoneFactory.getPhone(SubscriptionManager.getPhoneId(subId));
61 updateMessageOnIccEfForSubscriber(int subId, String callingPackage, int index, int status,
63 IccSmsInterfaceManager iccSmsIntMgr = getIccSmsInterfaceManager(subId);
68 " for Subscription: " + subId);
74 public boolean copyMessageToIccEfForSubscriber(int subId, String callingPackage, int status,
76 IccSmsInterfaceManager iccSmsIntMgr = getIccSmsInterfaceManager(subId);
81 " for Subscription: " + subId);
87 public List<SmsRawData> getAllMessagesFromIccEfForSubscriber(int subId, String callingPackage)
89 IccSmsInterfaceManager iccSmsIntMgr = getIccSmsInterfaceManager(subId);
    [all...]
UiccPhoneBookController.java 53 updateAdnRecordsInEfBySearchForSubscriber(int subId, int efid, String oldTag,
57 getIccPhoneBookInterfaceManager(subId);
63 " null for Subscription:"+subId);
78 updateAdnRecordsInEfByIndexForSubscriber(int subId, int efid, String newTag,
81 getIccPhoneBookInterfaceManager(subId);
87 " null for Subscription:"+subId);
99 getAdnRecordsSizeForSubscriber(int subId, int efid) throws android.os.RemoteException {
101 getIccPhoneBookInterfaceManager(subId);
106 " null for Subscription:"+subId);
117 public List<AdnRecord> getAdnRecordsInEfForSubscriber(int subId, int efid
    [all...]
IIccPhoneBook.aidl 53 * @param subId user preferred subId
56 List<AdnRecord> getAdnRecordsInEfForSubscriber(int subId, int efid);
99 * @param subId user preferred subId
102 boolean updateAdnRecordsInEfBySearchForSubscriber(int subId, int efid,
138 * @param subId user preferred subId
141 boolean updateAdnRecordsInEfByIndexForSubscriber(int subId, int efid, String newTag,
160 * @param subId user preferred subI
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyStateListeners.java 55 public CallStateChangeListener(EventFacade ef, int subId) {
56 super(subId);
58 subscriptionId = subId;
61 public CallStateChangeListener(EventFacade ef, int subId, Looper looper) {
62 super(subId, looper);
64 subscriptionId = subId;
120 public DataConnectionRealTimeInfoChangeListener(EventFacade ef, int subId) {
121 super(subId);
123 subscriptionId = subId;
126 public DataConnectionRealTimeInfoChangeListener(EventFacade ef, int subId, Looper looper)
    [all...]
SubscriptionManagerFacade.java 59 @RpcParameter(name = "subId")
60 Integer subId) {
61 mSubscriptionManager.setDefaultDataSubId(subId);
71 @RpcParameter(name = "subId")
72 Integer subId) {
73 mSubscriptionManager.setDefaultVoiceSubId(subId);
83 @RpcParameter(name = "subId")
84 Integer subId) {
85 mSubscriptionManager.setDefaultSmsSubId(subId);
100 @RpcParameter(name = "subId")
    [all...]
  /frameworks/base/core/java/android/service/carrier/
ICarrierMessagingService.aidl 36 * @param subId SMS subscription ID of the SIM
40 in MessagePdu pdu, String format, int destPort, int subId,
49 * @param subId SMS subscription ID of the SIM
54 void sendTextSms(String text, int subId, String destAddress, int sendSmsFlag,
63 * @param subId SMS subscription ID of the SIM
69 void sendDataSms(in byte[] data, int subId, String destAddress, int destPort,
78 * @param subId SMS subscription ID of the SIM
83 void sendMultipartTextSms(in List<String> parts, int subId, String destAddress,
92 * @param subId SMS subscription ID of the SIM
97 void sendMms(in Uri pduUri, int subId, in Uri location
    [all...]
CarrierMessagingService.java 120 * @param subId SMS subscription ID of the SIM
127 int subId, @NonNull ResultCallback<Boolean> callback) {
148 * @param subId SMS subscription ID of the SIM
155 int destPort, int subId, @NonNull final ResultCallback<Integer> callback) {
156 onFilterSms(pdu, format, destPort, subId, new ResultCallback<Boolean>() {
170 * @param subId SMS subscription ID of the SIM
176 @NonNull String text, int subId, @NonNull String destAddress,
189 * @param subId SMS subscription ID of the SIM
196 @NonNull String text, int subId, @NonNull String destAddress,
199 onSendTextSms(text, subId, destAddress, callback)
    [all...]
  /packages/services/Telephony/src/com/android/phone/vvm/
PhoneAccountHandleConverter.java 28 * Utility to convert between PhoneAccountHandle and subId, which is a common operation in OMTP
38 public static PhoneAccountHandle fromSubId(int subId) {
39 if (!SubscriptionManager.isValidSubscriptionId(subId)) {
40 VvmLog.e(TAG, "invalid subId " + subId);
45 Phone phone = PhoneFactory.getPhone(SubscriptionManager.getPhoneId(subId));
47 VvmLog.e(TAG, "Unable to find Phone for subId " + subId);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
SubscriptionControllerMock.java 78 public void setDefaultDataSubId(int subId) {
79 if (subId == DEFAULT_SUBSCRIPTION_ID) {
83 mDefaultDataSubId.set(subId);
84 broadcastDefaultDataSubIdChanged(subId);
87 private void broadcastDefaultDataSubIdChanged(int subId) {
91 intent.putExtra(PhoneConstants.SUBSCRIPTION_KEY, subId);
111 public SubscriptionInfo getActiveSubscriptionInfo(int subId, String callingPackage) {
152 public int setIconTint(int tint, int subId) {
156 public int setDisplayName(String displayName, int subId) {
160 public int setDisplayNameUsingSrc(String displayName, int subId, long nameSource)
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/
DefaultCarrierConfigValuesLoader.java 50 public Bundle get(int subId) {
51 subId = Utils.getEffectiveSubscriptionId(subId);
55 values = mValuesCache.get(subId);
58 mValuesCache.put(subId, values);
59 loadLocked(subId, values);
69 private void loadLocked(final int subId, final Bundle values) {
71 loadFromResources(subId, values);
74 loadFromSystem(subId, values);
81 * @param subId which SIM to load fo
    [all...]
Utils.java 66 * @param subId the subscription ID of the SmsManager
67 * @return the SmsManager for the input subId
69 static SmsManager getSmsManager(final int subId) {
71 return SmsManager.getSmsManagerForSubscriptionId(subId);
80 * @param subId input subscription ID
83 static int getEffectiveSubscriptionId(int subId) {
85 if (subId == MmsManager.DEFAULT_SUB_ID) {
86 subId = SmsManager.getDefaultSmsSubscriptionId();
89 if (subId < 0) {
90 subId = MmsManager.DEFAULT_SUB_ID
    [all...]
MmsManager.java 130 * @param subId the subscription ID of the SIM to use
136 public static void sendMultimediaMessage(int subId, Context context, Uri contentUri,
139 subId = Utils.getEffectiveSubscriptionId(subId);
140 final SmsManager smsManager = Utils.getSmsManager(subId);
142 getConfigOverrides(subId), sentIntent);
152 * @param subId the subscription ID of the SIM to use
158 public static void downloadMultimediaMessage(int subId, Context context, String locationUrl,
161 subId = Utils.getEffectiveSubscriptionId(subId);
    [all...]
  /frameworks/base/telephony/java/android/telephony/
SubscriptionManager.java 100 /** Minimum possible subid that represents a subscription */
104 /** Maximum possible subid that represents a subscription */
661 * Get the active SubscriptionInfo with the input subId.
667 * @param subId The unique SubscriptionInfo key in database.
672 public SubscriptionInfo getActiveSubscriptionInfo(int subId) {
673 if (VDBG) logd("[getActiveSubscriptionInfo]+ subId=" + subId);
674 if (!isValidSubscriptionId(subId)) {
676 logd("[getActiveSubscriptionInfo]- invalid subId");
686 subInfo = iSub.getActiveSubscriptionInfo(subId, mContext.getOpPackageName())
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
BugleCarrierConfigValuesLoader.java 57 public Bundle get(int subId) {
58 subId = PhoneUtils.getDefault().getEffectiveSubId(subId);
62 values = mValuesCache.get(subId);
65 mValuesCache.put(subId, values);
66 loadSource = loadLocked(subId, values);
71 + " from " + loadSource + " for subId=" + subId);
88 * @param subId which SIM to load for
92 private String loadLocked(final int subId, final Bundle values)
    [all...]
  /frameworks/base/core/java/android/net/
INetworkPolicyListener.aidl 25 void onSubscriptionOverride(int subId, int overrideMask, int overrideValue);

Completed in 422 milliseconds

1 2 3 4 5 6 7 8 91011