Home
last modified time | relevance | path

Searched refs:tACL_CONN (Results 1 – 8 of 8) sorted by relevance

/system/bt/stack/acl/
Dbtm_acl.cc83 tACL_CONN* acl_allocate_connection();
84 tACL_CONN* acl_get_connection_from_handle(uint16_t handle);
85 tACL_CONN* btm_bda_to_acl(const RawAddress& bda, tBT_TRANSPORT transport);
86 bool change_connection_packet_types(tACL_CONN& link,
88 void btm_establish_continue(tACL_CONN* p_acl_cb);
93 void hci_start_role_switch_to_central(tACL_CONN& p_acl);
130 inline bool IsEprAvailable(const tACL_CONN& p_acl) { in IsEprAvailable()
139 static void btm_process_remote_ext_features(tACL_CONN* p_acl_cb,
146 void btm_set_link_policy(tACL_CONN* conn, tLINK_POLICY policy);
149 void NotifyAclLinkUp(tACL_CONN& p_acl) { in NotifyAclLinkUp()
[all …]
Dacl.h172 struct tACL_CONN { struct
328 friend void tACL_CONN::Reset(); argument
329 friend tBTM_PM_MODE tACL_CONN::tPolicy::Mode() const;
339 friend void tACL_CONN::Reset();
340 friend hci_role_t tACL_CONN::tPolicy::Role() const;
356 friend void tACL_CONN::Reset();
363 friend void btm_set_link_policy(tACL_CONN* conn, tLINK_POLICY policy);
364 friend void tACL_CONN::Reset();
388 tACL_CONN acl_db[MAX_L2CAP_LINKS]; argument
Dacl.cc24 void tACL_CONN::Reset() { in Reset()
/system/bt/test/mock/
Dmock_main_shim_link_policy.h71 std::function<tBTM_STATUS(tACL_CONN& p_acl)> body{
72 [](tACL_CONN& p_acl) { return 0; }};
73 tBTM_STATUS operator()(tACL_CONN& p_acl) { return body(p_acl); }; in operator()
80 std::function<tBTM_STATUS(tACL_CONN& p_acl, uint16_t max, uint16_t min)> body{
81 [](tACL_CONN& p_acl, uint16_t max, uint16_t min) { return 0; }};
82 tBTM_STATUS operator()(tACL_CONN& p_acl, uint16_t max, uint16_t min) { in operator()
91 std::function<tBTM_STATUS(tACL_CONN& p_acl, uint16_t max_interval,
94 body{[](tACL_CONN& p_acl, uint16_t max_interval, uint16_t min_interval,
96 tBTM_STATUS operator()(tACL_CONN& p_acl, uint16_t max_interval, in operator()
Dmock_main_shim_link_policy.cc63 tBTM_STATUS set_active_mode(tACL_CONN& p_acl) { in set_active_mode()
67 tBTM_STATUS set_hold_mode(tACL_CONN& p_acl, uint16_t max, uint16_t min) { in set_hold_mode()
71 tBTM_STATUS set_sniff_mode(tACL_CONN& p_acl, uint16_t max_interval, in set_sniff_mode()
Dmock_stack_acl.cc39 bool IsEprAvailable(const tACL_CONN& p_acl) { in IsEprAvailable()
156 tACL_CONN* acl_get_connection_from_address(const RawAddress& bd_addr, in acl_get_connection_from_address()
161 tACL_CONN* acl_get_connection_from_handle(uint16_t handle) { in acl_get_connection_from_handle()
368 void btm_process_remote_ext_features(tACL_CONN* p_acl_cb, in btm_process_remote_ext_features()
436 void btm_set_link_policy(tACL_CONN* conn, tLINK_POLICY policy) { in btm_set_link_policy()
443 void hci_btm_set_link_supervision_timeout(tACL_CONN& link, uint16_t timeout) { in hci_btm_set_link_supervision_timeout()
/system/bt/main/shim/
Dlink_policy.cc47 tACL_CONN* acl_get_connection_from_handle(uint16_t handle);
53 tBTM_STATUS set_active_mode(tACL_CONN& p_acl) { in set_active_mode()
59 tBTM_STATUS set_hold_mode(tACL_CONN& p_acl, uint16_t max, uint16_t min) { in set_hold_mode()
65 tBTM_STATUS set_sniff_mode(tACL_CONN& p_acl, uint16_t max_interval, in set_sniff_mode()
121 tACL_CONN* p_acl = acl_get_connection_from_handle(handle); in BTM_SetPowerMode()
165 static bool is_encryption_pause_supported(const tACL_CONN& p_acl) { in is_encryption_pause_supported()
182 tACL_CONN* p_acl = acl_get_connection_from_handle(handle); in btm_pm_on_mode_change()
243 tACL_CONN* p_acl = acl_get_connection_from_handle(handle); in BTM_SetSsrParams()
259 tACL_CONN* p_acl = acl_get_connection_from_handle(handle); in btm_pm_on_sniff_subrating()
Dacl.cc923 const tACL_CONN& link = acl_cb.acl_db[i]; in DumpsysAcl()