Add HAL for pdu session id support

* Add in HAL support for AOSP allocating pdu session ids from modem
* Add in HAL support that notifies modem when a handover has begun and was cannceled

Test: N/A
Bug: 161572859
Change-Id: I1637fe48c785eae28f04e55cdb6fcabd606d744f
This commit is contained in:
Daniel Bright
2020-10-26 13:29:48 -07:00
parent 68e9f0229d
commit 8723b2565f

View File

@@ -496,6 +496,10 @@ public interface RILConstants {
int RIL_REQUEST_ENTER_SIM_DEPERSONALIZATION = 212; int RIL_REQUEST_ENTER_SIM_DEPERSONALIZATION = 212;
int RIL_REQUEST_ENABLE_NR_DUAL_CONNECTIVITY = 213; int RIL_REQUEST_ENABLE_NR_DUAL_CONNECTIVITY = 213;
int RIL_REQUEST_IS_NR_DUAL_CONNECTIVITY_ENABLED = 214; int RIL_REQUEST_IS_NR_DUAL_CONNECTIVITY_ENABLED = 214;
int RIL_REQUEST_ALLOCATE_PDU_SESSION_ID = 215;
int RIL_REQUEST_RELEASE_PDU_SESSION_ID = 216;
int RIL_REQUEST_BEGIN_HANDOVER = 217;
int RIL_REQUEST_CANCEL_HANDOVER = 218;
/* Responses begin */ /* Responses begin */
int RIL_RESPONSE_ACKNOWLEDGEMENT = 800; int RIL_RESPONSE_ACKNOWLEDGEMENT = 800;