blob: e15bfbce42eddbf2f6eedddb8e3155db4ff30662 [file] [log] [blame]
/******************************************************************************
*
* Copyright 2003-2012 Broadcom Corporation
*
* 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.
*
******************************************************************************/
/******************************************************************************
*
* This is the private interface file for the BTA device manager.
*
******************************************************************************/
#ifndef BTA_DM_INT_H
#define BTA_DM_INT_H
#include <base/strings/stringprintf.h>
#include <memory>
#include <string>
#include "bt_target.h" // Must be first to define build configuration
#include "bta/include/bta_api.h"
#include "bta/include/bta_gatt_api.h"
#include "bta/sys/bta_sys.h"
#include "main/shim/dumpsys.h"
#include "stack/include/bt_hdr.h"
#include "stack/include/bt_octets.h"
#include "types/bluetooth/uuid.h"
#include "types/raw_address.h"
#ifndef CASE_RETURN_TEXT
#define CASE_RETURN_TEXT(code) \
case code: \
return #code
#endif
/*****************************************************************************
* Constants and data types
****************************************************************************/
#define BTA_COPY_DEVICE_CLASS(coddst, codsrc) \
{ \
((uint8_t*)(coddst))[0] = ((uint8_t*)(codsrc))[0]; \
((uint8_t*)(coddst))[1] = ((uint8_t*)(codsrc))[1]; \
((uint8_t*)(coddst))[2] = ((uint8_t*)(codsrc))[2]; \
}
#define BTA_DM_MSG_LEN 50
#define BTA_SERVICE_ID_TO_SERVICE_MASK(id) (1 << (id))
/* DM search events */
typedef enum : uint16_t {
/* DM search API events */
BTA_DM_API_SEARCH_EVT = BTA_SYS_EVT_START(BTA_ID_DM_SEARCH),
BTA_DM_API_SEARCH_CANCEL_EVT,
BTA_DM_API_DISCOVER_EVT,
BTA_DM_INQUIRY_CMPL_EVT,
BTA_DM_REMT_NAME_EVT,
BTA_DM_SDP_RESULT_EVT,
BTA_DM_SEARCH_CMPL_EVT,
BTA_DM_DISCOVERY_RESULT_EVT,
BTA_DM_DISC_CLOSE_TOUT_EVT,
} tBTA_DM_EVT;
inline std::string bta_dm_event_text(const tBTA_DM_EVT& event) {
switch (event) {
CASE_RETURN_TEXT(BTA_DM_API_SEARCH_EVT);
CASE_RETURN_TEXT(BTA_DM_API_SEARCH_CANCEL_EVT);
CASE_RETURN_TEXT(BTA_DM_API_DISCOVER_EVT);
CASE_RETURN_TEXT(BTA_DM_INQUIRY_CMPL_EVT);
CASE_RETURN_TEXT(BTA_DM_REMT_NAME_EVT);
CASE_RETURN_TEXT(BTA_DM_SDP_RESULT_EVT);
CASE_RETURN_TEXT(BTA_DM_SEARCH_CMPL_EVT);
CASE_RETURN_TEXT(BTA_DM_DISCOVERY_RESULT_EVT);
CASE_RETURN_TEXT(BTA_DM_DISC_CLOSE_TOUT_EVT);
default:
return base::StringPrintf("UNKNOWN[0x%04x]", event);
}
}
/* data type for BTA_DM_API_SEARCH_EVT */
typedef struct {
BT_HDR_RIGID hdr;
tBTA_SERVICE_MASK services;
tBTA_DM_SEARCH_CBACK* p_cback;
} tBTA_DM_API_SEARCH;
/* data type for BTA_DM_API_DISCOVER_EVT */
typedef struct {
BT_HDR_RIGID hdr;
RawAddress bd_addr;
tBTA_DM_SEARCH_CBACK* p_cback;
tBT_TRANSPORT transport;
} tBTA_DM_API_DISCOVER;
typedef struct {
BT_HDR_RIGID hdr;
} tBTA_DM_API_DISCOVERY_CANCEL;
typedef struct {
RawAddress bd_addr;
bool accept;
uint8_t pin_len;
uint8_t p_pin[PIN_CODE_LEN];
} tBTA_DM_API_PIN_REPLY;
typedef struct {
BT_HDR_RIGID hdr;
RawAddress bd_addr;
tBTM_IO_CAP io_cap;
tBTM_OOB_DATA oob_data;
tBTM_AUTH_REQ auth_req;
} tBTA_DM_CI_IO_REQ;
typedef struct {
RawAddress bd_addr;
Octet16 c;
Octet16 r;
bool accept;
} tBTA_DM_CI_RMT_OOB;
typedef struct {
BT_HDR_RIGID hdr;
RawAddress bd_addr;
BD_NAME bd_name; /* Name of peer device. */
tHCI_STATUS hci_status;
} tBTA_DM_REMOTE_NAME;
/* data type for tBTA_DM_DISC_RESULT */
typedef struct {
BT_HDR_RIGID hdr;
tBTA_DM_SEARCH result;
} tBTA_DM_DISC_RESULT;
/* data type for BTA_DM_INQUIRY_CMPL_EVT */
typedef struct {
BT_HDR_RIGID hdr;
uint8_t num;
} tBTA_DM_INQUIRY_CMPL;
/* data type for BTA_DM_SDP_RESULT_EVT */
typedef struct {
BT_HDR_RIGID hdr;
tSDP_RESULT sdp_result;
} tBTA_DM_SDP_RESULT;
typedef struct {
RawAddress bd_addr;
DEV_CLASS dc;
LinkKey link_key;
uint8_t key_type;
bool link_key_known;
bool dc_known;
BD_NAME bd_name;
uint8_t pin_length;
} tBTA_DM_API_ADD_DEVICE;
typedef struct {
BT_HDR_RIGID hdr;
bool enable;
} tBTA_DM_API_BLE_FEATURE;
/* union of all data types */
typedef union {
/* GKI event buffer header */
BT_HDR_RIGID hdr;
tBTA_DM_API_SEARCH search;
tBTA_DM_API_DISCOVER discover;
tBTA_DM_REMOTE_NAME remote_name_msg;
tBTA_DM_DISC_RESULT disc_result;
tBTA_DM_INQUIRY_CMPL inq_cmpl;
tBTA_DM_SDP_RESULT sdp_event;
} tBTA_DM_MSG;
#define BTA_DM_NUM_PEER_DEVICE 7
typedef enum : uint8_t {
BTA_DM_NOT_CONNECTED = 0,
BTA_DM_CONNECTED = 1,
BTA_DM_UNPAIRING = 2,
} tBTA_DM_CONN_STATE;
inline std::string bta_conn_state_text(tBTA_DM_CONN_STATE state) {
switch (state) {
CASE_RETURN_TEXT(BTA_DM_NOT_CONNECTED);
CASE_RETURN_TEXT(BTA_DM_CONNECTED);
CASE_RETURN_TEXT(BTA_DM_UNPAIRING);
default:
return std::string("UNKNOWN");
}
}
typedef enum : uint8_t {
BTA_DM_DI_NONE = 0x00, /* nothing special */
BTA_DM_DI_SET_SNIFF = 0x01, /* set this bit if call BTM_SetPowerMode(sniff) */
BTA_DM_DI_INT_SNIFF = 0x02, /* set this bit if call BTM_SetPowerMode(sniff) &
enter sniff mode */
BTA_DM_DI_ACP_SNIFF = 0x04, /* set this bit if peer init sniff */
BTA_DM_DI_UNUSED = 0x08,
BTA_DM_DI_USE_SSR = 0x10, /* set this bit if ssr is supported for this link */
BTA_DM_DI_AV_ACTIVE = 0x20, /* set this bit if AV is active for this link */
} tBTA_DM_DEV_INFO_BITMASK;
typedef uint8_t tBTA_DM_DEV_INFO;
inline std::string device_info_text(tBTA_DM_DEV_INFO info) {
const char* const device_info_text[] = {
":set_sniff", ":int_sniff", ":acp_sniff",
":unused", ":use_ssr", ":av_active",
};
std::string s = base::StringPrintf("0x%02x", info);
if (info == BTA_DM_DI_NONE) return s + std::string(":none");
for (size_t i = 0; i < sizeof(device_info_text) / sizeof(device_info_text[0]);
i++) {
if (info & (1u << i)) s += std::string(device_info_text[i]);
}
return s;
}
/* set power mode request type */
#define BTA_DM_PM_RESTART 1
#define BTA_DM_PM_NEW_REQ 2
#define BTA_DM_PM_EXECUTE 3
typedef uint8_t tBTA_DM_PM_REQ;
struct tBTA_DM_PEER_DEVICE {
RawAddress peer_bdaddr;
tBTA_DM_CONN_STATE conn_state;
tBTA_PREF_ROLES pref_role;
bool in_use;
private:
// Dynamic pieces of operational device information
tBTA_DM_DEV_INFO info{BTA_DM_DI_NONE};
public:
std::string info_text() const { return device_info_text(info); }
void reset_device_info() { info = BTA_DM_DI_NONE; }
void set_av_active() { info |= BTA_DM_DI_AV_ACTIVE; }
void reset_av_active() { info &= ~BTA_DM_DI_AV_ACTIVE; }
bool is_av_active() const { return info & BTA_DM_DI_AV_ACTIVE; }
void set_local_init_sniff() { info |= BTA_DM_DI_INT_SNIFF; }
bool is_local_init_sniff() const { return info & BTA_DM_DI_INT_SNIFF; }
void set_remote_init_sniff() { info |= BTA_DM_DI_ACP_SNIFF; }
bool is_remote_init_sniff() const { return info & BTA_DM_DI_ACP_SNIFF; }
void set_sniff_command_sent() { info |= BTA_DM_DI_SET_SNIFF; }
void reset_sniff_command_sent() { info &= ~BTA_DM_DI_SET_SNIFF; }
bool is_sniff_command_sent() const { return info & BTA_DM_DI_SET_SNIFF; }
// NOTE: Why is this not used as a bitmask
void set_both_device_ssr_capable() { info = BTA_DM_DI_USE_SSR; }
void reset_sniff_flags() {
info &= ~(BTA_DM_DI_INT_SNIFF | BTA_DM_DI_ACP_SNIFF | BTA_DM_DI_SET_SNIFF);
}
void set_ssr_active() { info |= BTA_DM_DI_USE_SSR; }
void reset_ssr_active() { info &= ~BTA_DM_DI_USE_SSR; }
bool is_ssr_active() const { return info & BTA_DM_DI_USE_SSR; }
tBTA_DM_ENCRYPT_CBACK* p_encrypt_cback;
tBTM_PM_STATUS prev_low; /* previous low power mode used */
tBTA_DM_PM_ACTION pm_mode_attempted;
tBTA_DM_PM_ACTION pm_mode_failed;
bool remove_dev_pending;
tBT_TRANSPORT transport;
};
/* structure to store list of
active connections */
typedef struct {
tBTA_DM_PEER_DEVICE peer_device[BTA_DM_NUM_PEER_DEVICE];
uint8_t count;
uint8_t le_count;
} tBTA_DM_ACTIVE_LINK;
typedef struct {
RawAddress peer_bdaddr;
tBTA_SYS_ID id;
uint8_t app_id;
tBTA_SYS_CONN_STATUS state;
bool new_request;
std::string ToString() const {
return base::StringPrintf(
"peer:%s sys_name:%s app_id:%hhu state:%s new:request:%s",
ADDRESS_TO_LOGGABLE_CSTR(peer_bdaddr), BtaIdSysText(id).c_str(), app_id,
bta_sys_conn_status_text(state).c_str(), logbool(new_request).c_str());
}
} tBTA_DM_SRVCS;
#ifndef BTA_DM_NUM_CONN_SRVS
#define BTA_DM_NUM_CONN_SRVS 30
#endif
typedef struct {
uint8_t count;
tBTA_DM_SRVCS conn_srvc[BTA_DM_NUM_CONN_SRVS];
} tBTA_DM_CONNECTED_SRVCS;
typedef struct {
#define BTA_DM_PM_SNIFF_TIMER_IDX 0
#define BTA_DM_PM_PARK_TIMER_IDX 1
#define BTA_DM_PM_SUSPEND_TIMER_IDX 2
#define BTA_DM_PM_MODE_TIMER_MAX 3
/*
* Keep three different timers for PARK, SNIFF and SUSPEND if TBFC is
* supported.
*/
alarm_t* timer[BTA_DM_PM_MODE_TIMER_MAX];
uint8_t srvc_id[BTA_DM_PM_MODE_TIMER_MAX];
uint8_t pm_action[BTA_DM_PM_MODE_TIMER_MAX];
uint8_t active; /* number of active timer */
RawAddress peer_bdaddr;
bool in_use;
} tBTA_PM_TIMER;
extern tBTA_DM_CONNECTED_SRVCS bta_dm_conn_srvcs;
#define BTA_DM_NUM_PM_TIMER 7
/* DM control block */
typedef struct {
tBTA_DM_ACTIVE_LINK device_list;
tBTA_DM_SEC_CBACK* p_sec_cback;
tBTA_DM_SEC_CBACK* p_sec_sirk_cback;
tBTA_BLE_ENERGY_INFO_CBACK* p_energy_info_cback;
bool disabling;
alarm_t* disable_timer;
uint8_t pm_id;
tBTA_PM_TIMER pm_timer[BTA_DM_NUM_PM_TIMER];
uint8_t cur_av_count; /* current AV connecions */
/* Storage for pin code request parameters */
RawAddress pin_bd_addr;
DEV_CLASS pin_dev_class;
tBTA_DM_SEC_EVT pin_evt;
tBTM_IO_CAP loc_io_caps; /* IO Capabilities of local device */
tBTM_IO_CAP rmt_io_caps; /* IO Capabilities of remote device */
tBTM_AUTH_REQ loc_auth_req; /* Authentication required for local device */
tBTM_AUTH_REQ rmt_auth_req;
uint32_t num_val; /* the numeric value for comparison. If just_works, do not
show this number to UI */
bool just_works; /* true, if "Just Works" association model */
#if (BTA_EIR_CANNED_UUID_LIST != TRUE)
/* store UUID list for EIR */
uint32_t eir_uuid[BTM_EIR_SERVICE_ARRAY_SIZE];
#if (BTA_EIR_SERVER_NUM_CUSTOM_UUID > 0)
tBTA_CUSTOM_UUID bta_custom_uuid[BTA_EIR_SERVER_NUM_CUSTOM_UUID];
#endif
#endif
tBTA_DM_ENCRYPT_CBACK* p_encrypt_cback;
alarm_t* switch_delay_timer;
} tBTA_DM_CB;
/* DM search state */
typedef enum {
BTA_DM_SEARCH_IDLE,
BTA_DM_SEARCH_ACTIVE,
BTA_DM_SEARCH_CANCELLING,
BTA_DM_DISCOVER_ACTIVE
} tBTA_DM_STATE;
inline std::string bta_dm_state_text(const tBTA_DM_STATE& state) {
switch (state) {
CASE_RETURN_TEXT(BTA_DM_SEARCH_IDLE);
CASE_RETURN_TEXT(BTA_DM_SEARCH_ACTIVE);
CASE_RETURN_TEXT(BTA_DM_SEARCH_CANCELLING);
CASE_RETURN_TEXT(BTA_DM_DISCOVER_ACTIVE);
default:
return base::StringPrintf("UNKNOWN[%d]", state);
}
}
#undef CASE_RETURN_TEXT
/* DM search control block */
typedef struct {
tBTA_DM_SEARCH_CBACK* p_search_cback;
tBTM_INQ_INFO* p_btm_inq_info;
tBTA_SERVICE_MASK services;
tBTA_SERVICE_MASK services_to_search;
tBTA_SERVICE_MASK services_found;
tSDP_DISCOVERY_DB* p_sdp_db;
tBTA_DM_STATE state;
RawAddress peer_bdaddr;
bool name_discover_done;
BD_NAME peer_name;
alarm_t* search_timer;
uint8_t service_index;
tBTA_DM_MSG* p_pending_search;
fixed_queue_t* pending_discovery_queue;
bool wait_disc;
bool sdp_results;
bluetooth::Uuid uuid;
uint8_t peer_scn;
tBT_TRANSPORT transport;
tBTA_DM_SEARCH_CBACK* p_scan_cback;
tBTA_DM_SEARCH_CBACK* p_csis_scan_cback;
tGATT_IF client_if;
uint8_t uuid_to_search;
bool gatt_disc_active;
uint16_t conn_id;
alarm_t* gatt_close_timer; /* GATT channel close delay timer */
RawAddress pending_close_bda; /* pending GATT channel remote device address */
} tBTA_DM_SEARCH_CB;
/* DI control block */
typedef struct {
uint8_t di_num; /* total local DI record number */
uint32_t di_handle[BTA_DI_NUM_MAX]; /* local DI record handle, the first one
is primary record */
} tBTA_DM_DI_CB;
typedef struct {
uint16_t page_timeout; /* timeout for page in slots */
bool avoid_scatter; /* true to avoid scatternet when av is streaming (be the
central) */
} tBTA_DM_CFG;
extern const uint32_t bta_service_id_to_btm_srv_id_lkup_tbl[];
typedef struct {
uint8_t id;
uint8_t app_id;
uint8_t cfg;
} tBTA_DM_RM;
extern const tBTA_DM_CFG* p_bta_dm_cfg;
extern const tBTA_DM_RM* p_bta_dm_rm_cfg;
typedef struct {
uint8_t id;
uint8_t app_id;
uint8_t spec_idx; /* index of spec table to use */
} tBTA_DM_PM_CFG;
typedef struct {
tBTA_DM_PM_ACTION power_mode;
uint16_t timeout;
} tBTA_DM_PM_ACTN;
typedef struct {
uint8_t allow_mask; /* mask of sniff/hold/park modes to allow */
uint8_t ssr; /* set SSR on conn open/unpark */
tBTA_DM_PM_ACTN actn_tbl[BTA_DM_PM_NUM_EVTS][2];
} tBTA_DM_PM_SPEC;
typedef struct {
uint16_t max_lat;
uint16_t min_rmt_to;
uint16_t min_loc_to;
const char* name{nullptr};
} tBTA_DM_SSR_SPEC;
typedef struct {
uint16_t manufacturer;
uint16_t lmp_sub_version;
uint8_t lmp_version;
} tBTA_DM_LMP_VER_INFO;
extern const uint16_t bta_service_id_to_uuid_lkup_tbl[];
/* For Insight, PM cfg lookup tables are runtime configurable (to allow tweaking
* of params for power consumption measurements) */
#ifndef BTE_SIM_APP
#define tBTA_DM_PM_TYPE_QUALIFIER const
#else
#define tBTA_DM_PM_TYPE_QUALIFIER
#endif
extern const tBTA_DM_PM_CFG* p_bta_dm_pm_cfg;
tBTA_DM_PM_TYPE_QUALIFIER tBTA_DM_PM_SPEC* get_bta_dm_pm_spec();
extern const tBTM_PM_PWR_MD* p_bta_dm_pm_md;
extern tBTA_DM_SSR_SPEC* p_bta_dm_ssr_spec;
/* update dynamic BRCM Aware EIR data */
extern const tBTA_DM_EIR_CONF bta_dm_eir_cfg;
extern const tBTA_DM_EIR_CONF* p_bta_dm_eir_cfg;
/* DM control block */
extern tBTA_DM_CB bta_dm_cb;
/* DM search control block */
extern tBTA_DM_SEARCH_CB bta_dm_search_cb;
/* DI control block */
extern tBTA_DM_DI_CB bta_dm_di_cb;
bool bta_dm_search_sm_execute(const BT_HDR_RIGID* p_msg);
void bta_dm_search_sm_disable(void);
void bta_dm_enable(tBTA_DM_SEC_CBACK*);
void bta_dm_disable();
void bta_dm_ble_sirk_sec_cb_register(tBTA_DM_SEC_CBACK*);
void bta_dm_ble_sirk_confirm_device_reply(const RawAddress& bd_addr,
bool accept);
void bta_dm_set_dev_name(const std::vector<uint8_t>&);
void bta_dm_set_visibility(tBTA_DM_DISC, tBTA_DM_CONN);
void bta_dm_set_scan_config(tBTA_DM_MSG* p_data);
void bta_dm_vendor_spec_command(tBTA_DM_MSG* p_data);
void bta_dm_bond(const RawAddress&, tBLE_ADDR_TYPE, tBT_TRANSPORT,
tBT_DEVICE_TYPE);
void bta_dm_bond_cancel(const RawAddress&);
void bta_dm_pin_reply(std::unique_ptr<tBTA_DM_API_PIN_REPLY> msg);
void bta_dm_add_device(std::unique_ptr<tBTA_DM_API_ADD_DEVICE> msg);
void bta_dm_remove_device(const RawAddress& bd_addr);
void bta_dm_close_acl(const RawAddress&, bool, tBT_TRANSPORT);
void bta_dm_pm_btm_status(const RawAddress&, tBTM_PM_STATUS, uint16_t,
tHCI_STATUS);
void bta_dm_pm_timer(const RawAddress&, tBTA_DM_PM_ACTION);
void bta_dm_add_ampkey(tBTA_DM_MSG* p_data);
void bta_dm_add_blekey(const RawAddress& bd_addr, tBTA_LE_KEY_VALUE blekey,
tBTM_LE_KEY_TYPE key_type);
void bta_dm_add_ble_device(const RawAddress& bd_addr, tBLE_ADDR_TYPE addr_type,
tBT_DEVICE_TYPE dev_type);
void bta_dm_ble_passkey_reply(const RawAddress& bd_addr, bool accept,
uint32_t passkey);
void bta_dm_ble_confirm_reply(const RawAddress&, bool);
void bta_dm_ble_set_conn_params(const RawAddress&, uint16_t, uint16_t, uint16_t,
uint16_t);
void bta_dm_close_gatt_conn(tBTA_DM_MSG* p_data);
void bta_dm_ble_observe(bool, uint8_t, tBTA_DM_SEARCH_CBACK*);
void bta_dm_ble_scan(bool, uint8_t, bool);
void bta_dm_ble_csis_observe(bool, tBTA_DM_SEARCH_CBACK*);
void bta_dm_ble_update_conn_params(const RawAddress&, uint16_t, uint16_t,
uint16_t, uint16_t, uint16_t, uint16_t);
void bta_dm_ble_config_local_privacy(bool);
void bta_dm_ble_set_data_length(const RawAddress& bd_addr);
void bta_dm_ble_get_energy_info(tBTA_BLE_ENERGY_INFO_CBACK*);
void bta_dm_set_encryption(const RawAddress&, tBT_TRANSPORT,
tBTA_DM_ENCRYPT_CBACK*, tBTM_BLE_SEC_ACT);
void bta_dm_confirm(const RawAddress&, bool);
void bta_dm_ci_rmt_oob_act(std::unique_ptr<tBTA_DM_CI_RMT_OOB> msg);
void bta_dm_init_pm(void);
void bta_dm_disable_pm(void);
uint8_t bta_dm_get_av_count(void);
void bta_dm_search_start(tBTA_DM_MSG* p_data);
void bta_dm_search_cancel();
void bta_dm_discover(tBTA_DM_MSG* p_data);
void bta_dm_inq_cmpl(uint8_t num);
void bta_dm_remote_name_cmpl(const tBTA_DM_MSG* p_data);
void bta_dm_sdp_result(tBTA_DM_MSG* p_data);
void bta_dm_search_cmpl();
void bta_dm_free_sdp_db();
void bta_dm_disc_result(tBTA_DM_MSG* p_data);
void bta_dm_search_result(tBTA_DM_MSG* p_data);
void bta_dm_discovery_cmpl(tBTA_DM_MSG* p_data);
void bta_dm_queue_search(tBTA_DM_MSG* p_data);
void bta_dm_queue_disc(tBTA_DM_MSG* p_data);
void bta_dm_execute_queued_request();
bool bta_dm_is_search_request_queued();
void bta_dm_search_clear_queue();
void bta_dm_search_cancel_notify();
tBTA_DM_PEER_DEVICE* bta_dm_find_peer_device(const RawAddress& peer_addr);
void bta_dm_clear_event_filter(void);
void bta_dm_clear_event_mask(void);
void bta_dm_clear_filter_accept_list(void);
void bta_dm_disconnect_all_acls(void);
void bta_dm_le_rand(LeRandCallback cb);
void bta_dm_set_event_filter_connection_setup_all_devices();
void bta_dm_allow_wake_by_hid(
std::vector<RawAddress> classic_hid_devices,
std::vector<std::pair<RawAddress, uint8_t>> le_hid_devices);
void bta_dm_restore_filter_accept_list(
std::vector<std::pair<RawAddress, uint8_t>> le_devices);
void bta_dm_set_default_event_mask_except(uint64_t mask, uint64_t le_mask);
void bta_dm_set_event_filter_inquiry_result_all_devices();
void bta_dm_ble_reset_id(void);
tBTA_DM_STATE bta_dm_search_get_state();
void bta_dm_search_set_state(tBTA_DM_STATE state);
void bta_dm_eir_update_uuid(uint16_t uuid16, bool adding);
void bta_dm_eir_update_cust_uuid(const tBTA_CUSTOM_UUID &curr, bool adding);
void bta_dm_ble_subrate_request(const RawAddress& bd_addr, uint16_t subrate_min,
uint16_t subrate_max, uint16_t max_latency,
uint16_t cont_num, uint16_t timeout);
void bta_dm_consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
#endif /* BTA_DM_INT_H */