Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13e28bb9 authored by Junda Liu's avatar Junda Liu
Browse files

Add ForSubscriber suffix to APIs w/ subId argument.

Bug: b/17255752
Change-Id: I142d8961aa4c1fa074833f70c404c955caea0870
parent d5adbec5
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -29035,7 +29035,6 @@ package android.telephony {
    method public java.lang.String sendEnvelopeWithStatus(java.lang.String);
    method public java.lang.String sendEnvelopeWithStatus(java.lang.String);
    method public boolean setGlobalPreferredNetworkType();
    method public boolean setGlobalPreferredNetworkType();
    method public void setLine1NumberForDisplay(java.lang.String, java.lang.String);
    method public void setLine1NumberForDisplay(java.lang.String, java.lang.String);
    method public void setLine1NumberForDisplay(long, java.lang.String, java.lang.String);
    method public boolean setOperatorBrandOverride(java.lang.String);
    method public boolean setOperatorBrandOverride(java.lang.String);
    field public static final java.lang.String ACTION_PHONE_STATE_CHANGED = "android.intent.action.PHONE_STATE";
    field public static final java.lang.String ACTION_PHONE_STATE_CHANGED = "android.intent.action.PHONE_STATE";
    field public static final java.lang.String ACTION_RESPOND_VIA_MESSAGE = "android.intent.action.RESPOND_VIA_MESSAGE";
    field public static final java.lang.String ACTION_RESPOND_VIA_MESSAGE = "android.intent.action.RESPOND_VIA_MESSAGE";
+0 −1
Original line number Original line Diff line number Diff line
@@ -246,7 +246,6 @@ public class PhoneAccount implements Parcelable {
     * {@link #getAddress()}. For the majority of {@code PhoneAccount}s this should be registered
     * {@link #getAddress()}. For the majority of {@code PhoneAccount}s this should be registered
     * as {@code null}.  It is used by the system for SIM-based {@code PhoneAccount} registration
     * as {@code null}.  It is used by the system for SIM-based {@code PhoneAccount} registration
     * where {@link android.telephony.TelephonyManager#setLine1NumberForDisplay(String, String)}
     * where {@link android.telephony.TelephonyManager#setLine1NumberForDisplay(String, String)}
     * or {@link android.telephony.TelephonyManager#setLine1NumberForDisplay(long, String, String)}
     * has been used to alter the callback number.
     * has been used to alter the callback number.
     * <p>
     * <p>
     *
     *
+14 −13
Original line number Original line Diff line number Diff line
@@ -1704,7 +1704,7 @@ public class TelephonyManager {
     *   {@link android.Manifest.permission#READ_PHONE_STATE READ_PHONE_STATE}
     *   {@link android.Manifest.permission#READ_PHONE_STATE READ_PHONE_STATE}
     */
     */
    public String getLine1Number() {
    public String getLine1Number() {
        return getLine1Number(getDefaultSubscription());
        return getLine1NumberForSubscriber(getDefaultSubscription());
    }
    }


    /**
    /**
@@ -1717,7 +1717,7 @@ public class TelephonyManager {
     * @param subId whose phone number for line 1 is returned
     * @param subId whose phone number for line 1 is returned
     */
     */
    /** {@hide} */
    /** {@hide} */
    public String getLine1Number(long subId) {
    public String getLine1NumberForSubscriber(long subId) {
        String number = null;
        String number = null;
        try {
        try {
            number = getITelephony().getLine1NumberForDisplay(subId);
            number = getITelephony().getLine1NumberForDisplay(subId);
@@ -1751,7 +1751,7 @@ public class TelephonyManager {
     * @param number The dialing number
     * @param number The dialing number
     */
     */
    public void setLine1NumberForDisplay(String alphaTag, String number) {
    public void setLine1NumberForDisplay(String alphaTag, String number) {
        setLine1NumberForDisplay(getDefaultSubscription(), alphaTag, number);
        setLine1NumberForDisplayForSubscriber(getDefaultSubscription(), alphaTag, number);
    }
    }


    /**
    /**
@@ -1767,10 +1767,11 @@ public class TelephonyManager {
     * @param subId the subscriber that the alphatag and dialing number belongs to.
     * @param subId the subscriber that the alphatag and dialing number belongs to.
     * @param alphaTag alpha-tagging of the dailing nubmer
     * @param alphaTag alpha-tagging of the dailing nubmer
     * @param number The dialing number
     * @param number The dialing number
     * @hide
     */
     */
    public void setLine1NumberForDisplay(long subId, String alphaTag, String number) {
    public void setLine1NumberForDisplayForSubscriber(long subId, String alphaTag, String number) {
        try {
        try {
            getITelephony().setLine1NumberForDisplay(subId, alphaTag, number);
            getITelephony().setLine1NumberForDisplayForSubscriber(subId, alphaTag, number);
        } catch (RemoteException ex) {
        } catch (RemoteException ex) {
        } catch (NullPointerException ex) {
        } catch (NullPointerException ex) {
        }
        }
@@ -1786,7 +1787,7 @@ public class TelephonyManager {
     * nobody seems to call this.
     * nobody seems to call this.
     */
     */
    public String getLine1AlphaTag() {
    public String getLine1AlphaTag() {
        return getLine1AlphaTag(getDefaultSubscription());
        return getLine1AlphaTagForSubscriber(getDefaultSubscription());
    }
    }


    /**
    /**
@@ -1800,7 +1801,7 @@ public class TelephonyManager {
     * nobody seems to call this.
     * nobody seems to call this.
     */
     */
    /** {@hide} */
    /** {@hide} */
    public String getLine1AlphaTag(long subId) {
    public String getLine1AlphaTagForSubscriber(long subId) {
        String alphaTag = null;
        String alphaTag = null;
        try {
        try {
            alphaTag = getITelephony().getLine1AlphaTagForDisplay(subId);
            alphaTag = getITelephony().getLine1AlphaTagForDisplay(subId);
@@ -3369,7 +3370,7 @@ public class TelephonyManager {
     * @hide
     * @hide
     */
     */
    public void enableSimplifiedNetworkSettings(boolean enable) {
    public void enableSimplifiedNetworkSettings(boolean enable) {
        enableSimplifiedNetworkSettings(getDefaultSubscription(), enable);
        enableSimplifiedNetworkSettingsForSubscriber(getDefaultSubscription(), enable);
    }
    }


    /**
    /**
@@ -3384,9 +3385,9 @@ public class TelephonyManager {
     * @param enable true means enabling the simplified UI.
     * @param enable true means enabling the simplified UI.
     * @hide
     * @hide
     */
     */
    public void enableSimplifiedNetworkSettings(long subId, boolean enable) {
    public void enableSimplifiedNetworkSettingsForSubscriber(long subId, boolean enable) {
        try {
        try {
            getITelephony().enableSimplifiedNetworkSettings(subId, enable);
            getITelephony().enableSimplifiedNetworkSettingsForSubscriber(subId, enable);
        } catch (RemoteException ex) {
        } catch (RemoteException ex) {
        } catch (NullPointerException ex) {
        } catch (NullPointerException ex) {
        }
        }
@@ -3402,7 +3403,7 @@ public class TelephonyManager {
     * @hide
     * @hide
     */
     */
    public boolean getSimplifiedNetworkSettingsEnabled() {
    public boolean getSimplifiedNetworkSettingsEnabled() {
        return getSimplifiedNetworkSettingsEnabled(getDefaultSubscription());
        return getSimplifiedNetworkSettingsEnabledForSubscriber(getDefaultSubscription());
    }
    }


    /**
    /**
@@ -3415,9 +3416,9 @@ public class TelephonyManager {
     * @return true if the simplified UI is enabled.
     * @return true if the simplified UI is enabled.
     * @hide
     * @hide
     */
     */
    public boolean getSimplifiedNetworkSettingsEnabled(long subId) {
    public boolean getSimplifiedNetworkSettingsEnabledForSubscriber(long subId) {
        try {
        try {
            return getITelephony().getSimplifiedNetworkSettingsEnabled(subId);
            return getITelephony().getSimplifiedNetworkSettingsEnabledForSubscriber(subId);
        } catch (RemoteException ex) {
        } catch (RemoteException ex) {
        } catch (NullPointerException ex) {
        } catch (NullPointerException ex) {
        }
        }
+3 −3
Original line number Original line Diff line number Diff line
@@ -715,7 +715,7 @@ interface ITelephony {
     * @param subId for which the simplified UI should be enabled or disabled.
     * @param subId for which the simplified UI should be enabled or disabled.
     * @param enable true means enabling the simplified UI.
     * @param enable true means enabling the simplified UI.
     */
     */
    void enableSimplifiedNetworkSettings(long subId, boolean enable);
    void enableSimplifiedNetworkSettingsForSubscriber(long subId, boolean enable);


    /**
    /**
     * Get whether a simplified Mobile Network Settings UI is enabled.
     * Get whether a simplified Mobile Network Settings UI is enabled.
@@ -723,7 +723,7 @@ interface ITelephony {
     * @param subId for which the simplified UI should be enabled or disabled.
     * @param subId for which the simplified UI should be enabled or disabled.
     * @return true if the simplified UI is enabled.
     * @return true if the simplified UI is enabled.
     */
     */
    boolean getSimplifiedNetworkSettingsEnabled(long subId);
    boolean getSimplifiedNetworkSettingsEnabledForSubscriber(long subId);


    /**
    /**
     * Set the phone number string and its alphatag for line 1 for display
     * Set the phone number string and its alphatag for line 1 for display
@@ -735,7 +735,7 @@ interface ITelephony {
     * @param alphaTag alpha-tagging of the dailing nubmer
     * @param alphaTag alpha-tagging of the dailing nubmer
     * @param number The dialing number
     * @param number The dialing number
     */
     */
    void setLine1NumberForDisplay(long subId, String alphaTag, String number);
    void setLine1NumberForDisplayForSubscriber(long subId, String alphaTag, String number);


    /**
    /**
     * Returns the displayed dialing number string if it was set previously via
     * Returns the displayed dialing number string if it was set previously via