diff options
author | Jack Yu <jackyu@google.com> | 2020-10-01 18:29:31 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-10-01 18:29:31 +0000 |
commit | 6c541722ff4fc606d42a0cd13095ca20e8154f22 (patch) | |
tree | 94cda93e5221f4d44c702ad09558023731635ae1 /telephony/java/com | |
parent | 638bab6e483c7b79f9aa2c698696f040b7805d47 (diff) | |
parent | 34a50e35f533456bbeea4e0b73f42ddadfd2b4e6 (diff) |
Merge "Added getEquivalentHomePlmns API"
Diffstat (limited to 'telephony/java/com')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index ae1b5c1b50bd..659d9cd38faf 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -2297,4 +2297,12 @@ interface ITelephony { * Whether device can connect to 5G network when two SIMs are active. */ boolean canConnectTo5GInDsdsMode(); + + /** + * Returns a list of the equivalent home PLMNs (EF_EHPLMN) from the USIM app. + * + * @return A list of equivalent home PLMNs. Returns an empty list if EF_EHPLMN is empty or + * does not exist on the SIM card. + */ + List<String> getEquivalentHomePlmns(int subId, String callingPackage, String callingFeatureId); } |