• Home
  • Raw
  • Download

Lines Matching refs:report

310     for (LeAdvertisingReport report : reports) {  in handle_advertising_report()  local
312 switch (report.event_type_) { in handle_advertising_report()
332 LOG_WARN("Unsupported event type:%d", (uint16_t)report.event_type_); in handle_advertising_report()
337 for (auto gap_data : report.advertising_data_) { in handle_advertising_report()
345 (uint8_t)report.address_type_, in handle_advertising_report()
346 report.address_, in handle_advertising_report()
351 report.rssi_, in handle_advertising_report()
383 for (LeExtendedAdvertisingReport report : reports) { in handle_extended_advertising_report() local
384 uint16_t event_type = report.connectable_ | (report.scannable_ << kScannableBit) | in handle_extended_advertising_report()
385 … (report.directed_ << kDirectedBit) | (report.scan_response_ << kScanResponseBit) | in handle_extended_advertising_report()
386 … (report.legacy_ << kLegacyBit) | ((uint16_t)report.data_status_ << kDataStatusBits); in handle_extended_advertising_report()
389 (uint8_t)report.address_type_, in handle_extended_advertising_report()
390 report.address_, in handle_extended_advertising_report()
391 (uint8_t)report.primary_phy_, in handle_extended_advertising_report()
392 (uint8_t)report.secondary_phy_, in handle_extended_advertising_report()
393 report.advertising_sid_, in handle_extended_advertising_report()
394 report.tx_power_, in handle_extended_advertising_report()
395 report.rssi_, in handle_extended_advertising_report()
396 report.periodic_advertising_interval_, in handle_extended_advertising_report()
397 report.advertising_data_); in handle_extended_advertising_report()