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
|
/******************************************************************************
*
* Copyright (c) 2016, The Linux Foundation.
* Copyright (C) 2014 Google, Inc.
*
* 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.
*
******************************************************************************/
#pragma once
#include <stdbool.h>
#include "device/include/interop.h"
typedef uint16_t UINT16;
// API's for adding entries to dynamic interop database
void interop_database_add_addr(const uint16_t feature, const RawAddress* addr, size_t length);
void interop_database_add_name(const uint16_t feature, const char* name);
void interop_database_add_manufacturer(const interop_feature_t feature, uint16_t manufacturer);
void interop_database_add_vndr_prdt(const interop_feature_t feature, uint16_t vendor_id,
uint16_t product_id);
void interop_database_add_addr_max_lat(const interop_feature_t feature, const RawAddress* addr,
uint16_t max_lat);
void interop_database_add_version(const interop_feature_t feature, uint16_t version);
void interop_database_add_addr_lmp_version(const interop_feature_t feature, const RawAddress* addr,
uint8_t lmp_ver, uint16_t lmp_sub_ver);
// API's for removing entries from dynamic interop database
bool interop_database_remove_addr(const interop_feature_t feature, const RawAddress* addr);
bool interop_database_remove_name(const interop_feature_t feature, const char* name);
bool interop_database_remove_manufacturer(const interop_feature_t feature, uint16_t manufacturer);
bool interop_database_remove_vndr_prdt(const interop_feature_t feature, uint16_t vendor_id,
uint16_t product_id);
bool interop_database_remove_addr_max_lat(const interop_feature_t feature, const RawAddress* addr,
uint16_t max_lat);
bool interop_database_remove_version(const interop_feature_t feature, uint16_t version);
bool interop_database_remove_feature(const interop_feature_t feature);
bool interop_database_remove_addr_lmp_version(const interop_feature_t feature,
const RawAddress* addr, uint8_t lmp_ver,
uint16_t lmp_sub_ver);
// API's to match entries with in dynamic interop database
bool interop_database_match_addr(const interop_feature_t feature, const RawAddress* addr);
bool interop_database_match_name(const interop_feature_t feature, const char* name);
bool interop_database_match_manufacturer(const interop_feature_t feature, uint16_t manufacturer);
bool interop_database_match_vndr_prdt(const interop_feature_t feature, uint16_t vendor_id,
uint16_t product_id);
bool interop_database_match_addr_get_max_lat(const interop_feature_t feature,
const RawAddress* addr, uint16_t* max_lat);
bool interop_database_match_version(const interop_feature_t feature, uint16_t version);
bool interop_database_match_addr_get_lmp_ver(const interop_feature_t feature,
const RawAddress* addr, uint8_t* lmp_ver,
uint16_t* lmp_sub_ver);
|