Searched defs:SmsManager (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/telephony/src/java/android/telephony/gsm/
H A DSmsManager.java26 * Get this object by calling the static method SmsManager.getDefault().
27 * @deprecated Replaced by android.telephony.SmsManager that supports both GSM and CDMA.
29 @Deprecated public final class SmsManager { class
30 private static SmsManager sInstance;
31 private android.telephony.SmsManager mSmsMgrProxy;
33 /** Get the default instance of the SmsManager
35 * @return the default instance of the SmsManager
36 * @deprecated Use android.telephony.SmsManager.
39 public static final SmsManager getDefault() {
41 sInstance = new SmsManager();
47 private SmsManager() { method in class:SmsManager
[all...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsManager.java58 public final class SmsManager { class
59 private static final String TAG = "SmsManager";
67 private static final SmsManager sInstance = new SmsManager(DEFAULT_SUBSCRIPTION_ID);
75 private static final Map<Integer, SmsManager> sSubInstances =
76 new ArrayMap<Integer, SmsManager>();
343 * A variant of {@link SmsManager#sendTextMessage} that allows self to be the caller. This is
574 * A variant of {@link SmsManager#sendDataMessage} that allows self to be the caller. This is
603 * Get the SmsManager associated with the default subscription id. The instance will always be
606 * @return the SmsManager associate
631 private SmsManager(int subId) { method in class:SmsManager
[all...]

Completed in 1540 milliseconds