Lines Matching refs:bqr
48 namespace bqr { namespace
875 : public bluetooth::bqr::BluetoothQualityReportInterface {
922 &bluetooth::bqr::BluetoothQualityReportCallbacks::bqr_delivery_callback, in bqr_delivery_event()
942 auto bqr = hci::BqrEventView::CreateOptional(vendor_specific_event_view); in vendor_specific_event_callback() local
943 if (!bqr) { in vendor_specific_event_callback()
949 uint8_t quality_report_id = static_cast<uint8_t>(bqr->GetQualityReportId()); in vendor_specific_event_callback()
955 case bluetooth::bqr::QUALITY_REPORT_ID_LMP_LL_MESSAGE_TRACE: { in vendor_specific_event_callback()
956 auto lmp_view = hci::BqrLogDumpEventView::Create(*bqr); in vendor_specific_event_callback()
958 if (bqr_parameter_length >= bluetooth::bqr::kLogDumpParamTotalLen) { in vendor_specific_event_callback()
959 bluetooth::bqr::DumpLmpLlMessage(bqr_parameter_length, p_bqr_event); in vendor_specific_event_callback()
966 case bluetooth::bqr::QUALITY_REPORT_ID_BT_SCHEDULING_TRACE: in vendor_specific_event_callback()
967 if (bqr_parameter_length >= bluetooth::bqr::kLogDumpParamTotalLen) { in vendor_specific_event_callback()
968 bluetooth::bqr::DumpBtScheduling(bqr_parameter_length, p_bqr_event); in vendor_specific_event_callback()