Loading system/bta/dm/bta_dm_act.cc +14 −0 Original line number Diff line number Diff line Loading @@ -4069,6 +4069,20 @@ void bta_dm_le_rand(LeRandCallback cb) { bluetooth::shim::BTM_LeRand(cb); } /******************************************************************************* * * Function BTA_DmRestoreFilterAcceptList * * Description Floss: Restore the state of the for the filter accept list * * Parameters * *******************************************************************************/ void bta_dm_restore_filter_accept_list() { // Autoplumbed bluetooth::shim::BTM_RestoreFilterAcceptList(); } /******************************************************************************* * * Function BTA_DmSetDefaultEventMask Loading system/bta/dm/bta_dm_api.cc +5 −0 Original line number Diff line number Diff line Loading @@ -699,6 +699,11 @@ void BTA_DmLeRand(LeRandCallback cb) { do_in_main_thread(FROM_HERE, base::Bind(bta_dm_le_rand, cb)); } void BTA_DmRestoreFilterAcceptList() { APPL_TRACE_API("BTA_DmRestoreFilterAcceptList"); do_in_main_thread(FROM_HERE, base::Bind(bta_dm_restore_filter_accept_list)); } void BTA_DmSetDefaultEventMask() { APPL_TRACE_API("BTA_DmSetDefaultEventMask"); do_in_main_thread(FROM_HERE, base::Bind(bta_dm_set_default_event_mask)); Loading system/bta/dm/bta_dm_int.h +1 −0 Original line number Diff line number Diff line Loading @@ -549,6 +549,7 @@ extern void bta_dm_clear_event_mask(void); extern void bta_dm_clear_filter_accept_list(void); extern void bta_dm_disconnect_all_acls(void); extern void bta_dm_le_rand(LeRandCallback cb); extern void bta_dm_restore_filter_accept_list(); extern void bta_dm_set_default_event_mask(); extern void bta_dm_set_event_filter_inquiry_result_all_devices(); Loading system/bta/include/bta_api.h +11 −0 Original line number Diff line number Diff line Loading @@ -1218,6 +1218,17 @@ using LeRandCallback = base::Callback<void(uint64_t)>; ******************************************************************************/ extern void BTA_DmLeRand(LeRandCallback cb); /******************************************************************************* * * Function BTA_DmRestoreFilterAcceptList * * Description Floss: Restore the state of the for the filter accept list * * Parameters * *******************************************************************************/ extern void BTA_DmRestoreFilterAcceptList(); /******************************************************************************* * * Function BTA_DmSetDefaultEventMask Loading Loading
system/bta/dm/bta_dm_act.cc +14 −0 Original line number Diff line number Diff line Loading @@ -4069,6 +4069,20 @@ void bta_dm_le_rand(LeRandCallback cb) { bluetooth::shim::BTM_LeRand(cb); } /******************************************************************************* * * Function BTA_DmRestoreFilterAcceptList * * Description Floss: Restore the state of the for the filter accept list * * Parameters * *******************************************************************************/ void bta_dm_restore_filter_accept_list() { // Autoplumbed bluetooth::shim::BTM_RestoreFilterAcceptList(); } /******************************************************************************* * * Function BTA_DmSetDefaultEventMask Loading
system/bta/dm/bta_dm_api.cc +5 −0 Original line number Diff line number Diff line Loading @@ -699,6 +699,11 @@ void BTA_DmLeRand(LeRandCallback cb) { do_in_main_thread(FROM_HERE, base::Bind(bta_dm_le_rand, cb)); } void BTA_DmRestoreFilterAcceptList() { APPL_TRACE_API("BTA_DmRestoreFilterAcceptList"); do_in_main_thread(FROM_HERE, base::Bind(bta_dm_restore_filter_accept_list)); } void BTA_DmSetDefaultEventMask() { APPL_TRACE_API("BTA_DmSetDefaultEventMask"); do_in_main_thread(FROM_HERE, base::Bind(bta_dm_set_default_event_mask)); Loading
system/bta/dm/bta_dm_int.h +1 −0 Original line number Diff line number Diff line Loading @@ -549,6 +549,7 @@ extern void bta_dm_clear_event_mask(void); extern void bta_dm_clear_filter_accept_list(void); extern void bta_dm_disconnect_all_acls(void); extern void bta_dm_le_rand(LeRandCallback cb); extern void bta_dm_restore_filter_accept_list(); extern void bta_dm_set_default_event_mask(); extern void bta_dm_set_event_filter_inquiry_result_all_devices(); Loading
system/bta/include/bta_api.h +11 −0 Original line number Diff line number Diff line Loading @@ -1218,6 +1218,17 @@ using LeRandCallback = base::Callback<void(uint64_t)>; ******************************************************************************/ extern void BTA_DmLeRand(LeRandCallback cb); /******************************************************************************* * * Function BTA_DmRestoreFilterAcceptList * * Description Floss: Restore the state of the for the filter accept list * * Parameters * *******************************************************************************/ extern void BTA_DmRestoreFilterAcceptList(); /******************************************************************************* * * Function BTA_DmSetDefaultEventMask Loading