From e6fcf244014c04c9a585d537ef2bbbb29945b4a9 Mon Sep 17 00:00:00 2001 From: Sukhwan Mun Date: Fri, 15 Dec 2023 09:14:52 +0000 Subject: [PATCH] rename TRIGGER_CLEAR_RAT_BLOCK to _BLOCKS Rename TRIGGER_CLEAR_RAT_BLOCK to TRIGGER_CLEAR_RAT_BLOCKS and update comments for TRIGGER_RAT_BLOCK Bug: 315094087 Test: FrameworksTelephonyTests:ImsPhoneCallTrackerTest#testUpdateImsRegistrationInfo Change-Id: I5c3f60c80caae0f66c40c18c0dd80e1e01b3ec42 --- .../android/hardware/radio/ims/SuggestedAction.aidl | 2 +- .../aidl/android/hardware/radio/ims/SuggestedAction.aidl | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/radio/aidl/aidl_api/android.hardware.radio.ims/current/android/hardware/radio/ims/SuggestedAction.aidl b/radio/aidl/aidl_api/android.hardware.radio.ims/current/android/hardware/radio/ims/SuggestedAction.aidl index 6dbf09ddc9..98460061ac 100644 --- a/radio/aidl/aidl_api/android.hardware.radio.ims/current/android/hardware/radio/ims/SuggestedAction.aidl +++ b/radio/aidl/aidl_api/android.hardware.radio.ims/current/android/hardware/radio/ims/SuggestedAction.aidl @@ -39,5 +39,5 @@ enum SuggestedAction { TRIGGER_PLMN_BLOCK, TRIGGER_PLMN_BLOCK_WITH_TIMEOUT, TRIGGER_RAT_BLOCK, - TRIGGER_CLEAR_RAT_BLOCK, + TRIGGER_CLEAR_RAT_BLOCKS, } diff --git a/radio/aidl/android/hardware/radio/ims/SuggestedAction.aidl b/radio/aidl/android/hardware/radio/ims/SuggestedAction.aidl index f0e28fc8e0..73c57fada3 100644 --- a/radio/aidl/android/hardware/radio/ims/SuggestedAction.aidl +++ b/radio/aidl/android/hardware/radio/ims/SuggestedAction.aidl @@ -37,9 +37,10 @@ enum SuggestedAction { TRIGGER_PLMN_BLOCK_WITH_TIMEOUT, /** * Indicates that the IMS registration on current RAT failed multiple times. - * The radio shall block the current RAT and search for other available RATs in the - * background. If no other RAT is available that meets the carrier requirements, the - * radio may remain on the current RAT for internet service. The radio clears all + * The radio shall block the {@link AccessNetwork} included with this and + * search for other available RATs in the background. + * If no other RAT is available that meets the carrier requirements, the + * radio may remain on the blocked RAT for internet service. The radio clears all * RATs marked as unavailable if {@link IRadioIms#updateImsRegistrationInfo()} API * with REGISTERED state is invoked. */ @@ -48,5 +49,5 @@ enum SuggestedAction { * Indicates that the radio clears all RATs marked as unavailable and tries to find * an available RAT that meets the carrier requirements. */ - TRIGGER_CLEAR_RAT_BLOCK, + TRIGGER_CLEAR_RAT_BLOCKS, }