Home
last modified time | relevance | path

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

/tools/netsim/rust/daemon/src/wireless/
Dmocked.rs20 use netsim_proto::model::Chip as ProtoChip;
39 fn get(&self) -> ProtoChip { in get() argument
40 let mut proto_chip = ProtoChip::new(); in get()
45 fn patch(&self, _chip: &ProtoChip) {} in patch() argument
Dble_beacon.rs21 use netsim_proto::model::Chip as ProtoChip;
63 fn get(&self) -> ProtoChip { in get() argument
64 let mut chip_proto = ProtoChip::new(); in get()
72 fn patch(&self, chip: &ProtoChip) { in patch() argument
Duwb.rs21 use netsim_proto::model::Chip as ProtoChip;
80 fn get(&self) -> ProtoChip { in get() argument
81 let mut chip_proto = ProtoChip::new(); in get()
92 fn patch(&self, chip: &ProtoChip) { in patch() argument
163 fn patch_chip_proto() -> ProtoChip { in patch_chip_proto()
164 let mut chip_proto = ProtoChip::new(); in patch_chip_proto()
Dwireless_adaptor.rs21 use netsim_proto::model::Chip as ProtoChip;
62 fn get(&self) -> ProtoChip; in get() argument
67 fn patch(&self, chip: &ProtoChip); in patch() argument
Dwifi.rs23 use netsim_proto::model::Chip as ProtoChip;
109 fn get(&self) -> ProtoChip { in get() argument
110 let mut chip_proto = ProtoChip::new(); in get()
119 fn patch(&self, patch: &ProtoChip) { in patch() argument
Dbluetooth.rs27 use netsim_proto::model::Chip as ProtoChip;
105 fn get(&self) -> ProtoChip { in get() argument
108 let mut chip_proto = ProtoChip::new(); in get()
131 fn patch(&self, chip: &ProtoChip) { in patch() argument
/tools/netsim/rust/daemon/src/devices/
Dchip.rs26 use netsim_proto::model::Chip as ProtoChip;
133 pub fn get(&self) -> Result<ProtoChip, String> { in get() argument
145 pub fn patch(&self, patch: &ProtoChip) -> Result<(), String> { in patch()
316 let mut patch_body = ProtoChip::new(); in test_chip_patch()
/tools/netsim/rust/daemon/src/uwb/
Dranging_estimator.rs117 use netsim_proto::model::Chip as ProtoChip;
125 let mut proto_chip = ProtoChip::new(); in create_proto_device_with_uwb_chip()