Home
last modified time | relevance | path

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

/tools/netsim/rust/daemon/src/wireless/
Dbluetooth.rs142 let mut ble_stats_proto = ProtoRadioStats::new(); in get_stats() localVariable
143 ble_stats_proto.set_duration_secs(duration_secs); in get_stats()
150 ble_stats_proto.invalid_packets.push(invalid_packet.clone()); in get_stats()
153 let mut classic_stats_proto = ble_stats_proto.clone(); in get_stats()
159 ble_stats_proto.set_kind(netsim_radio_stats::Kind::BLUETOOTH_LOW_ENERGY); in get_stats()
160 ble_stats_proto.set_tx_count(chip_proto.bt().low_energy.tx_count); in get_stats()
161 ble_stats_proto.set_rx_count(chip_proto.bt().low_energy.rx_count); in get_stats()
167 vec![ble_stats_proto, classic_stats_proto] in get_stats()