1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*
* Copyright 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Generated mock file from original source file
* Functions generated:12
*
* mockcify.pl ver 0.2.1
*/
#include <cstdint>
#include <functional>
#include <map>
#include <string>
extern std::map<std::string, int> mock_function_count_map;
// Mock include file to share data between tests and mock
#include "test/mock/mock_stack_pan_api.h"
// Mocked compile conditionals, if any
#ifndef UNUSED_ATTR
#define UNUSED_ATTR
#endif
// Mocked internal structures, if any
namespace test {
namespace mock {
namespace stack_pan_api {
// Function state capture and return values, if needed
struct PAN_Connect PAN_Connect;
struct PAN_Disconnect PAN_Disconnect;
struct PAN_SetMulticastFilters PAN_SetMulticastFilters;
struct PAN_SetProtocolFilters PAN_SetProtocolFilters;
struct PAN_SetRole PAN_SetRole;
struct PAN_Write PAN_Write;
struct PAN_WriteBuf PAN_WriteBuf;
struct PAN_SetTraceLevel PAN_SetTraceLevel;
struct PAN_Deregister PAN_Deregister;
struct PAN_Dumpsys PAN_Dumpsys;
struct PAN_Init PAN_Init;
struct PAN_Register PAN_Register;
} // namespace stack_pan_api
} // namespace mock
} // namespace test
// Mocked functions, if any
tPAN_RESULT PAN_Connect(const RawAddress& rem_bda, tPAN_ROLE src_role,
tPAN_ROLE dst_role, uint16_t* handle) {
mock_function_count_map[__func__]++;
return test::mock::stack_pan_api::PAN_Connect(rem_bda, src_role, dst_role,
handle);
}
tPAN_RESULT PAN_Disconnect(uint16_t handle) {
mock_function_count_map[__func__]++;
return test::mock::stack_pan_api::PAN_Disconnect(handle);
}
tPAN_RESULT PAN_SetMulticastFilters(uint16_t handle, uint16_t num_mcast_filters,
uint8_t* p_start_array,
uint8_t* p_end_array) {
mock_function_count_map[__func__]++;
return test::mock::stack_pan_api::PAN_SetMulticastFilters(
handle, num_mcast_filters, p_start_array, p_end_array);
}
tPAN_RESULT PAN_SetProtocolFilters(uint16_t handle, uint16_t num_filters,
uint16_t* p_start_array,
uint16_t* p_end_array) {
mock_function_count_map[__func__]++;
return test::mock::stack_pan_api::PAN_SetProtocolFilters(
handle, num_filters, p_start_array, p_end_array);
}
tPAN_RESULT PAN_SetRole(uint8_t role, std::string p_user_name,
std::string p_nap_name) {
mock_function_count_map[__func__]++;
return test::mock::stack_pan_api::PAN_SetRole(role, p_user_name, p_nap_name);
}
tPAN_RESULT PAN_Write(uint16_t handle, const RawAddress& dst,
const RawAddress& src, uint16_t protocol, uint8_t* p_data,
uint16_t len, bool ext) {
mock_function_count_map[__func__]++;
return test::mock::stack_pan_api::PAN_Write(handle, dst, src, protocol,
p_data, len, ext);
}
tPAN_RESULT PAN_WriteBuf(uint16_t handle, const RawAddress& dst,
const RawAddress& src, uint16_t protocol,
BT_HDR* p_buf, bool ext) {
mock_function_count_map[__func__]++;
return test::mock::stack_pan_api::PAN_WriteBuf(handle, dst, src, protocol,
p_buf, ext);
}
uint8_t PAN_SetTraceLevel(uint8_t new_level) {
mock_function_count_map[__func__]++;
return test::mock::stack_pan_api::PAN_SetTraceLevel(new_level);
}
void PAN_Deregister(void) {
mock_function_count_map[__func__]++;
test::mock::stack_pan_api::PAN_Deregister();
}
void PAN_Dumpsys(int fd) {
mock_function_count_map[__func__]++;
test::mock::stack_pan_api::PAN_Dumpsys(fd);
}
void PAN_Init(void) {
mock_function_count_map[__func__]++;
test::mock::stack_pan_api::PAN_Init();
}
void PAN_Register(tPAN_REGISTER* p_register) {
mock_function_count_map[__func__]++;
test::mock::stack_pan_api::PAN_Register(p_register);
}
// END mockcify generation
|