Home
last modified time | relevance | path

Searched refs:command_complete (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Bluetooth/system/stack/btm/
Dble_scanner_hci_interface.cc91 void PeriodicScanCancelStart(status_cb command_complete) override { in PeriodicScanCancelStart() argument
93 base::Bind(&status_callback, std::move(command_complete))); in PeriodicScanCancelStart()
97 status_cb command_complete) override { in PeriodicScanTerminate() argument
99 sync_handle, base::Bind(&status_callback, std::move(command_complete))); in PeriodicScanTerminate()
103 status_cb command_complete) override { in PeriodicScanResultEvtEnable() argument
106 base::Bind(&status_callback, std::move(command_complete))); in PeriodicScanResultEvtEnable()
110 BleScannerHciInterface::list_size_cb command_complete) override { in PeriodicAdvertiserListGetSize() argument
111 command_complete.Run( in PeriodicAdvertiserListGetSize()
117 status_cb command_complete) override { in PeriodicAdvertiserListAddDevice() argument
120 base::Bind(&status_callback, std::move(command_complete))); in PeriodicAdvertiserListAddDevice()
[all …]
Dbtm_ble_scanner.cc67 BleScannerHciInterface::handle_cb command_complete) override { in PeriodicAdvSyncTransfer() argument
69 sync_handle, command_complete); in PeriodicAdvSyncTransfer()
74 handle_cb command_complete) override { in PeriodicAdvSetInfoTransfer() argument
76 adv_handle, command_complete); in PeriodicAdvSetInfoTransfer()
82 status_cb command_complete) override { in SetPeriodicAdvSyncTransferParams() argument
85 command_complete); in SetPeriodicAdvSyncTransferParams()
/packages/modules/Bluetooth/tools/rootcanal/rust/src/llcp/
Diso.rs424 let command_complete = |status| hci::LeSetCigParametersCompleteBuilder { in hci_le_set_cig_parameters() localVariable
436 return self.send_hci_event(command_complete(hci::ErrorCode::CommandDisallowed)); in hci_le_set_cig_parameters()
456 return self.send_hci_event(command_complete( in hci_le_set_cig_parameters()
472 return self.send_hci_event(command_complete( in hci_le_set_cig_parameters()
486 return self.send_hci_event(command_complete(hci::ErrorCode::CommandDisallowed)); in hci_le_set_cig_parameters()
498 return self.send_hci_event(command_complete(hci::ErrorCode::CommandDisallowed)); in hci_le_set_cig_parameters()
507 .send_hci_event(command_complete(hci::ErrorCode::InvalidHciCommandParameters)); in hci_le_set_cig_parameters()
535 .send_hci_event(command_complete(hci::ErrorCode::InvalidHciCommandParameters)); in hci_le_set_cig_parameters()
545 .send_hci_event(command_complete(hci::ErrorCode::InvalidHciCommandParameters)); in hci_le_set_cig_parameters()
557 return self.send_hci_event(command_complete( in hci_le_set_cig_parameters()
[all …]
/packages/modules/Bluetooth/tools/rootcanal/lib/hci/
Dpcap_filter.cc114 auto command_complete = CommandCompleteView::Create(event); in FilterHciEvent() local
115 ASSERT(command_complete.IsValid()); in FilterHciEvent()
116 switch (command_complete.GetCommandOpCode()) { in FilterHciEvent()
118 return FilterReadLocalNameComplete(command_complete); in FilterHciEvent()
120 return FilterReadExtendedInquiryResponseComplete(command_complete); in FilterHciEvent()
305 bluetooth::hci::CommandCompleteView& command_complete) { in FilterReadLocalNameComplete() argument
306 auto parameters = ReadLocalNameCompleteView::Create(command_complete); in FilterReadLocalNameComplete()
322 bluetooth::hci::CommandCompleteView& command_complete) { in FilterReadExtendedInquiryResponseComplete() argument
324 ReadExtendedInquiryResponseCompleteView::Create(command_complete); in FilterReadExtendedInquiryResponseComplete()
/packages/modules/Bluetooth/system/stack/include/
Dble_scanner.h57 handle_cb command_complete) = 0;
61 handle_cb command_complete) = 0;
67 status_cb command_complete) = 0;
/packages/modules/Bluetooth/tools/rootcanal/include/hci/
Dpcap_filter.h73 bluetooth::hci::CommandCompleteView& command_complete);
75 bluetooth::hci::CommandCompleteView& command_complete);
/packages/modules/Bluetooth/system/gd/hci/
Dcontroller_test.cc256 CommandCompleteView command_complete = CommandCompleteView::Create(event); in HandleCommand() local
257 ASSERT_TRUE(command_complete.IsValid()); in HandleCommand()
258 on_complete(std::move(command_complete)); in HandleCommand()