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.cc248 auto status_view = LeSetScanEnableCompleteView::Create(view); in check_status() local
249 ASSERT(status_view.IsValid()); in check_status()
250 ASSERT(status_view.GetStatus() == ErrorCode::SUCCESS); in check_status()
253 auto status_view = LeSetExtendedScanEnableCompleteView::Create(view); in check_status() local
254 ASSERT(status_view.IsValid()); in check_status()
255 ASSERT(status_view.GetStatus() == ErrorCode::SUCCESS); in check_status()
258 auto status_view = LeSetScanParametersCompleteView::Create(view); in check_status() local
259 ASSERT(status_view.IsValid()); in check_status()
260 ASSERT(status_view.GetStatus() == ErrorCode::SUCCESS); in check_status()
263 auto status_view = LeExtendedScanParamsCompleteView::Create(view); in check_status() local
[all …]
Dle_advertising_manager.cc473 auto status_view = View::Create(view); in check_status() local
474 ASSERT(status_view.IsValid()); in check_status()
475 if (status_view.GetStatus() != ErrorCode::SUCCESS) { in check_status()
476 LOG_INFO("SetEnable returned status %s", ErrorCodeText(status_view.GetStatus()).c_str()); in check_status()
Dle_scanning_manager_test.cc153 CommandStatusView status_view = CommandStatusView::Create(event); in CommandStatusCallback() local
154 ASSERT_TRUE(status_view.IsValid()); in CommandStatusCallback()
155 std::move(command_status_callbacks.front()).Invoke(status_view); in CommandStatusCallback()
Dle_advertising_manager_test.cc181 CommandStatusView status_view = CommandStatusView::Create(event); in CommandStatusCallback() local
182 ASSERT_TRUE(status_view.IsValid()); in CommandStatusCallback()
183 std::move(command_status_callbacks.front()).Invoke(status_view); in CommandStatusCallback()
Dcontroller.cc431 auto status_view = T::Create(view); in check_status() local
432 ASSERT(status_view.IsValid()); in check_status()
433 ASSERT(status_view.GetStatus() == ErrorCode::SUCCESS); in check_status()
Dacl_manager_test.cc259 CommandStatusView status_view = CommandStatusView::Create(event); in CommandStatusCallback() local
260 ASSERT_TRUE(status_view.IsValid()); in CommandStatusCallback()
261 std::move(command_status_callbacks.front()).Invoke(status_view); in CommandStatusCallback()