Merge 4b083d660b8317e5ea82f29da18aca3d1126481f on remote branch

Change-Id: I9264399b55e399ef0e1413f72bc6138be6899507
diff --git a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
index f8005cb..3681bc6 100644
--- a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
+++ b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
@@ -5283,6 +5283,7 @@
         HeadsetService headsetService = HeadsetService.getHeadsetService();
         boolean isInCall = headsetService != null && headsetService.isScoOrCallActive();
         boolean isFMActive = mAudioManager.getParameters("fm_status").contains("1");
+        boolean resetShoFlag = false;
         Log.d(TAG, "0: SHO Init: isInCall = " + isInCall + " isFMActive = " + isFMActive);
         synchronized (Avrcp_ext.this) {
             if (isShoActive) {
@@ -5299,10 +5300,16 @@
                 Log.d(TAG, "5: SHO started: PlayReq = " + PlayReq);
             }
         }
+        if (device != null && device.isTwsPlusDevice() &&
+            mA2dpService.isA2dpPlaying(device)) {
+            Log.d(TAG,"startSHO: TWS+ switch, reset isShoActive");
+            resetShoFlag = true;
+        }
         boolean ret = mA2dpService.startSHO(device);
         if(!ret) {
             isShoActive = false;
             if (device.isTwsPlusDevice()) {
+                resetShoFlag = false;
                 BluetoothDevice activeDevice = mA2dpService.getActiveDevice();
                 if (activeDevice != null &&
                     isTwsPlusPair(device, activeDevice)) {
@@ -5316,10 +5323,11 @@
             return ret;
         }
         synchronized (Avrcp_ext.this) {
-            if (!PlayReq || isInCall || isFMActive) {
+            if (!PlayReq || isInCall || isFMActive || resetShoFlag) {
                 isShoActive = false;
                 Log.d(TAG, "6: SHO complete");
-
+                if (resetShoFlag)
+                    resetShoFlag = false;
                 if (mHandler.hasMessages(MESSAGE_START_SHO)) {
                     mHandler.removeMessages(MESSAGE_START_SHO);
                     triggerSHO(SHOQueue.device, SHOQueue.PlayReq, false);
diff --git a/system_bt_ext/conf/interop_database.conf b/system_bt_ext/conf/interop_database.conf
index 9a0e3b1..bdcc96f 100644
--- a/system_bt_ext/conf/interop_database.conf
+++ b/system_bt_ext/conf/interop_database.conf
@@ -521,3 +521,16 @@
 
 #Disable LPA enhanced power control feature
 [INTEROP_DISABLE_LPA_ENHANCED_POWER_CONTROL]
+
+#For some remote devices disable setting of refresh_sig_timer while responding
+#to incoming AVDTP signalling. While incoming connection remote device is sending
+#set_config and delay report back to back, which is violating spec(As per the spec,
+#remote should wait for set_config response and then it should send delay report).
+#Due to which HOST is responding BAD_STATE for delay_report sent by remote, which
+#resulted in remote is going to bad state and sent AVDTP_OPEN with ACP Stream
+#Endpoint ID: 0, for which DUT responded with Error Code: BAD_ACP_SEID
+#04:4e:af:a8:a0:01 ==> Name: HB20
+[INTEROP_DISABLE_REFRESH_ACCPET_SIG_TIMER]
+04:4E:AF = Address_Based
+HB20 = Name_Based
+HB 20 = Name_Based
diff --git a/system_bt_ext/device/src/interop.cc b/system_bt_ext/device/src/interop.cc
index 76dd441..605f908 100644
--- a/system_bt_ext/device/src/interop.cc
+++ b/system_bt_ext/device/src/interop.cc
@@ -256,6 +256,7 @@
     CASE_RETURN_STR(INTEROP_DISABLE_SNIFF_DURING_CALL)
     CASE_RETURN_STR(INTEROP_HID_HOST_LIMIT_SNIFF_INTERVAL)
     CASE_RETURN_STR(INTEROP_DISABLE_LPA_ENHANCED_POWER_CONTROL)
+    CASE_RETURN_STR(INTEROP_DISABLE_REFRESH_ACCPET_SIG_TIMER)
     CASE_RETURN_STR(END_OF_INTEROP_LIST)
   }
   return "UNKNOWN";