Send user reject for SET_UP_CALL timeout

For the setup call command, a 'no response from user' is incorrectly
sent from the dialog activity when user doesn't respond to the dialog or
the dialog loses foreground focus.

Correct response per spec is 'user did not accept the proactive command'.
Route the error handling to the SET_UP_CALL handler to send this.

Bug: 38253898
Change-Id: I4f3263a2bf18979fb493da72039584f95c671d4d
diff --git a/src/java/com/android/internal/telephony/cat/CatService.java b/src/java/com/android/internal/telephony/cat/CatService.java
index cd7a756..802944d 100755
--- a/src/java/com/android/internal/telephony/cat/CatService.java
+++ b/src/java/com/android/internal/telephony/cat/CatService.java
@@ -1071,6 +1071,13 @@
             }
             break;
         case NO_RESPONSE_FROM_USER:
+            // No need to send terminal response for SET UP CALL on user timeout,
+            // instead use dedicated API
+            if (type == CommandType.SET_UP_CALL) {
+                mCmdIf.handleCallSetupRequestFromSim(false, null);
+                mCurrntCmd = null;
+                return;
+            }
         case UICC_SESSION_TERM_BY_USER:
             resp = null;
             break;