Remove unnecessary term 'all' from the API name

getAllSatellitePlmnsForCarrier > getSatellitePlmnsForCarrier
The word 'all' is unnecessary here, it's already implied by PLMN being a plural.

Bug: 320462244
Test: atest SatelliteManagerTet, SatelliteManagerTestOnMockService
Change-Id: I10c70e68ce00db25a1952fc7c3e8a76997c7792f
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index 1dc99fd..30621ff 100644
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -12662,11 +12662,11 @@
      *
      * @throws SecurityException if the caller doesn't have the required permission.
      */
-    @NonNull public List<String> getAllSatellitePlmnsForCarrier(int subId) {
-        enforceSatelliteCommunicationPermission("getAllSatellitePlmnsForCarrier");
+    @NonNull public List<String> getSatellitePlmnsForCarrier(int subId) {
+        enforceSatelliteCommunicationPermission("getSatellitePlmnsForCarrier");
         final long identity = Binder.clearCallingIdentity();
         try {
-            return mSatelliteController.getAllSatellitePlmnsForCarrier(subId);
+            return mSatelliteController.getSatellitePlmnsForCarrier(subId);
         } finally {
             Binder.restoreCallingIdentity(identity);
         }