• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2025 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "bta/include/bta_jv_api.h"
18 #include "bta/include/bta_rfcomm_metrics.h"
19 #include "test/common/mock_functions.h"
20 #include "types/raw_address.h"
21 
bta_collect_rfc_metrics_after_sdp_fail(tBTA_JV_STATUS,RawAddress,int,int,bool,uint64_t)22 void bta_collect_rfc_metrics_after_sdp_fail(tBTA_JV_STATUS /* sdp_status */, RawAddress /* addr */,
23                                             int /* app_uid */, int /* security */,
24                                             bool /* is_server */, uint64_t /* sdp_duration */) {
25   inc_func_call_count(__func__);
26 }
27 
bta_collect_rfc_metrics_after_port_fail(tPORT_RESULT,bool,tBTA_JV_STATUS,RawAddress,int,int,bool,uint64_t)28 void bta_collect_rfc_metrics_after_port_fail(tPORT_RESULT /* port_result */,
29                                              bool /* sdp_initiated */,
30                                              tBTA_JV_STATUS /* sdp_status */, RawAddress /* addr */,
31                                              int /* app_uid */, int /* security */,
32                                              bool /* is_server */, uint64_t /* sdp_duration_ms */) {
33   inc_func_call_count(__func__);
34 }
35