Add min_ce/max_ce parameters to gattClientRequestLeConnectionParameters

Add new test connection event (ce) parameters, min_ce and max_ce, to
the SL4A tests for LE Connection-oriented Channel (CoC) feature.
This CL passes these 2 parameters to the native stack.

Test: Run cmd: act.py -c $MY_SL4A_CONFIG -tc BleCoc2ConnTest
Bug: 77528723

Change-Id: Iea8f3c5518a6bc1a8be13880cb94fe2cd6616464
diff --git a/Common/src/com/googlecode/android_scripting/facade/bluetooth/GattClientFacade.java b/Common/src/com/googlecode/android_scripting/facade/bluetooth/GattClientFacade.java
index b84da4d..f6edde8 100644
--- a/Common/src/com/googlecode/android_scripting/facade/bluetooth/GattClientFacade.java
+++ b/Common/src/com/googlecode/android_scripting/facade/bluetooth/GattClientFacade.java
@@ -1751,12 +1751,15 @@
             @RpcParameter(name = "minConnectionInterval") Integer minConnectionInterval,
             @RpcParameter(name = "maxConnectionInterval") Integer maxConnectionInterval,
             @RpcParameter(name = "slaveLatency") Integer slaveLatency,
-            @RpcParameter(name = "supervisionTimeout") Integer supervisionTimeout)
+            @RpcParameter(name = "supervisionTimeout") Integer supervisionTimeout,
+            @RpcParameter(name = "minConnectionEventLen") Integer minConnectionEventLen,
+            @RpcParameter(name = "maxConnectionEventLen") Integer maxConnectionEventLen)
             throws Exception {
         boolean result = false;
         if (mBluetoothGattList.get(index) != null) {
             result = mBluetoothGattList.get(index).requestLeConnectionUpdate(
-                minConnectionInterval, maxConnectionInterval, slaveLatency, supervisionTimeout);
+                minConnectionInterval, maxConnectionInterval, slaveLatency, supervisionTimeout,
+                minConnectionEventLen, maxConnectionEventLen);
         } else {
             throw new Exception("Invalid index input:" + index);
         }