From ae9daa85e0e37ff38c7dccd9f2127a142fd716e0 Mon Sep 17 00:00:00 2001 From: Daniel Bright Date: Thu, 29 Oct 2020 21:41:45 -0700 Subject: [PATCH] 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 (clean cherry pick) Test: N/A Bug: 161572859 Merged-In: I1637fe48c785eae28f04e55cdb6fcabd606d744f Change-Id: I58f6803a7e3eeccd3077dca888e2a4021f47b57f --- .../java/com/android/internal/telephony/RILConstants.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java index d524299d7ede0..ca7efcde4fef0 100644 --- a/telephony/java/com/android/internal/telephony/RILConstants.java +++ b/telephony/java/com/android/internal/telephony/RILConstants.java @@ -494,6 +494,10 @@ public interface RILConstants { int RIL_REQUEST_SET_SYSTEM_SELECTION_CHANNELS = 210; int RIL_REQUEST_GET_BARRING_INFO = 211; int RIL_REQUEST_ENTER_SIM_DEPERSONALIZATION = 212; + 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 */ int RIL_RESPONSE_ACKNOWLEDGEMENT = 800;