Home
last modified time | relevance | path

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

/tools/netsim/rust/daemon/src/wireless/
Duwb.rs64 tx_count: AtomicI32, field
80 let _ = self.tx_count.fetch_add(1, Ordering::SeqCst); in handle_request()
85 self.tx_count.store(0, Ordering::SeqCst); in reset()
93 tx_count: self.tx_count.load(Ordering::SeqCst), in get()
116 stats_proto.set_tx_count(chip_proto.uwb().tx_count); in get_stats()
148 tx_count: AtomicI32::new(0), in add_chip()
196 assert_eq!(radio.tx_count, 0); in test_uwb_patch_and_reset()
Dbluetooth.rs113 tx_count: bt_proto.low_energy.tx_count, in get()
120 tx_count: bt_proto.classic.tx_count, in get()
161 ble_stats_proto.set_tx_count(chip_proto.bt().low_energy.tx_count); in get_stats()
165 classic_stats_proto.set_tx_count(chip_proto.bt().classic.tx_count); in get_stats()
Dwifi_chip.rs57 chip_proto.mut_wifi().tx_count = client.tx_count.load(Ordering::Relaxed) as i32; in get()
75 stats_proto.set_tx_count(chip_proto.wifi().tx_count); in get_stats()
Dble_beacon.rs84 stats_proto.set_tx_count(chip_proto.ble_beacon().bt.low_energy.tx_count); in get_stats()
/tools/netsim/rust/proto/src/
Dstats.rs359 pub tx_count: ::std::option::Option<i32>, field
446 pub fn tx_count(&self) -> i32 { in tx_count() method
447 self.tx_count.unwrap_or(0) in tx_count()
451 self.tx_count = ::std::option::Option::None; in clear_tx_count()
455 self.tx_count.is_some() in has_tx_count()
460 self.tx_count = ::std::option::Option::Some(v); in set_tx_count()
540 |m: &NetsimRadioStats| { &m.tx_count }, in generated_message_descriptor_data()
541 |m: &mut NetsimRadioStats| { &mut m.tx_count }, in generated_message_descriptor_data()
591 self.tx_count = ::std::option::Option::Some(is.read_int32()?); in merge_from()
626 if let Some(v) = self.tx_count { in compute_size()
[all …]
Dmodel.rs877 pub tx_count: i32, field
911 |m: &Radio| { &m.tx_count }, in generated_message_descriptor_data()
912 |m: &mut Radio| { &mut m.tx_count }, in generated_message_descriptor_data()
944 self.tx_count = is.read_int32()?; in merge_from()
967 if self.tx_count != 0 { in compute_size()
968 my_size += ::protobuf::rt::int32_size(3, self.tx_count); in compute_size()
985 if self.tx_count != 0 { in write_to_with_cached_sizes()
986 os.write_int32(3, self.tx_count)?; in write_to_with_cached_sizes()
1010 self.tx_count = 0; in clear()
1019 tx_count: 0, in default_instance()
/tools/netsim/rust/daemon/src/wifi/
Dmedium.rs88 pub tx_count: Arc<AtomicU32>, field
96 tx_count: Arc::new(AtomicU32::new(0)), in new()
139 client.tx_count.store(0, Ordering::Relaxed); in reset()
434 .tx_count in incr_tx()
/tools/netsim/proto/netsim/
Dstats.proto51 optional int32 tx_count = 4; field
Dmodel.proto76 int32 tx_count = 3; field
/tools/netsim/rust/cli/src/
Ddisplay.rs345 self.value.rx_count, self.value.tx_count in fmt()