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

Commit f2b55a0e authored by Jack Yu's avatar Jack Yu Committed by Gerrit Code Review
Browse files

Merge "Completely detach old data stack"

parents d884be6c ae26bc40
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
@@ -8145,24 +8145,6 @@ public class TelephonyManager {
        return -1;
    }
    /**
     * Get P-CSCF address from PCO after data connection is established or modified.
     * @param apnType the apnType, "ims" for IMS APN, "emergency" for EMERGENCY APN
     * @return array of P-CSCF address
     * @hide
     */
    public String[] getPcscfAddress(String apnType) {
        try {
            ITelephony telephony = getITelephony();
            if (telephony == null)
                return new String[0];
            return telephony.getPcscfAddress(apnType, getOpPackageName(), getAttributionTag());
        } catch (RemoteException e) {
            return new String[0];
        }
    }
    /**
     * Resets the {@link android.telephony.ims.ImsService} associated with the specified sim slot.
     * Used by diagnostic apps to force the IMS stack to be disabled and re-enabled in an effort to
+0 −8
Original line number Diff line number Diff line
@@ -977,14 +977,6 @@ interface ITelephony {
     */
     boolean isManualNetworkSelectionAllowed(int subId);

    /**
     * Get P-CSCF address from PCO after data connection is established or modified.
     * @param apnType the apnType, "ims" for IMS APN, "emergency" for EMERGENCY APN
     * @param callingPackage The package making the call.
     * @param callingFeatureId The feature in the package.
     */
    String[] getPcscfAddress(String apnType, String callingPackage, String callingFeatureId);

    /**
     * Set IMS registration state
     */