Home
last modified time | relevance | path

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

/system/bt/gd/hci/acl_manager/
Devent_checkers.h26 auto status_view = T::Create(view); in check_command_complete() local
27 if (!status_view.IsValid()) { in check_command_complete()
31 ErrorCode status = status_view.GetStatus(); in check_command_complete()
32 OpCode op_code = status_view.GetCommandOpCode(); in check_command_complete()
43 auto status_view = T::Create(view); in check_command_status() local
44 if (!status_view.IsValid()) { in check_command_status()
48 ErrorCode status = status_view.GetStatus(); in check_command_status()
49 OpCode op_code = status_view.GetCommandOpCode(); in check_command_status()
/system/bt/gd/hci/
Dle_scanning_manager.cc1010 auto status_view = LeAdvFilterCompleteView::Create(view); in on_advertising_filter_complete() local
1011 ASSERT(status_view.IsValid()); in on_advertising_filter_complete()
1012 if (status_view.GetStatus() != ErrorCode::SUCCESS) { in on_advertising_filter_complete()
1016 ErrorCodeText(status_view.GetStatus()).c_str()); in on_advertising_filter_complete()
1019 ApcfOpcode apcf_opcode = status_view.GetApcfOpcode(); in on_advertising_filter_complete()
1022 auto complete_view = LeAdvFilterEnableCompleteView::Create(status_view); in on_advertising_filter_complete()
1027 auto complete_view = LeAdvFilterSetFilteringParametersCompleteView::Create(status_view); in on_advertising_filter_complete()
1033 auto complete_view = LeAdvFilterBroadcasterAddressCompleteView::Create(status_view); in on_advertising_filter_complete()
1042 auto complete_view = LeAdvFilterServiceUuidCompleteView::Create(status_view); in on_advertising_filter_complete()
1051 auto complete_view = LeAdvFilterSolicitationUuidCompleteView::Create(status_view); in on_advertising_filter_complete()
[all …]
Dle_advertising_manager.cc1056 auto status_view = View::Create(view); in check_status_with_id() local
1057 ASSERT(status_view.IsValid()); in check_status_with_id()
1058 if (status_view.GetStatus() != ErrorCode::SUCCESS) { in check_status_with_id()
1062 ErrorCodeText(status_view.GetStatus()).c_str()); in check_status_with_id()
1065 if (status_view.GetStatus() != ErrorCode::SUCCESS) { in check_status_with_id()
1066 … LOG_INFO("Got a command complete with status %s", ErrorCodeText(status_view.GetStatus()).c_str()); in check_status_with_id()
1122 auto status_view = View::Create(view); in check_status() local
1123 ASSERT(status_view.IsValid()); in check_status()
1124 if (status_view.GetStatus() != ErrorCode::SUCCESS) { in check_status()
1128 ErrorCodeText(status_view.GetStatus()).c_str()); in check_status()
Dle_scanning_manager_test.cc163 CommandStatusView status_view = CommandStatusView::Create(event); in CommandStatusCallback() local
164 ASSERT_TRUE(status_view.IsValid()); in CommandStatusCallback()
166 std::move(command_status_callbacks.front()).Invoke(status_view); in CommandStatusCallback()
Dcontroller.cc515 auto status_view = T::Create(view); in check_status() local
516 ASSERT(status_view.IsValid()); in check_status()
517 ASSERT(status_view.GetStatus() == ErrorCode::SUCCESS); in check_status()
Dle_advertising_manager_test.cc204 CommandStatusView status_view = CommandStatusView::Create(event); in CommandStatusCallback() local
205 ASSERT_TRUE(status_view.IsValid()); in CommandStatusCallback()
206 std::move(command_status_callbacks.front()).Invoke(status_view); in CommandStatusCallback()
Dacl_manager_test.cc267 CommandStatusView status_view = CommandStatusView::Create(event); in CommandStatusCallback() local
268 ASSERT_TRUE(status_view.IsValid()); in CommandStatusCallback()
269 std::move(command_status_callbacks.front()).Invoke(status_view); in CommandStatusCallback()