Home
last modified time | relevance | path

Searched defs:ProtoChip (Results 1 – 7 of 7) sorted by relevance

/tools/netsim/rust/daemon/src/wireless/
Dwireless_chip.rs42 fn get(&self) -> ProtoChip; in get()
47 fn patch(&self, chip: &ProtoChip); in patch()
Dmocked.rs39 fn get(&self) -> ProtoChip { in get()
45 fn patch(&self, _chip: &ProtoChip) {} in patch()
Dwifi_chip.rs53 fn get(&self) -> ProtoChip { in get()
63 fn patch(&self, patch: &ProtoChip) { in patch() method
Dble_beacon.rs63 fn get(&self) -> ProtoChip { in get()
72 fn patch(&self, chip: &ProtoChip) { in patch()
Duwb.rs89 fn get(&self) -> ProtoChip { in get()
101 fn patch(&self, chip: &ProtoChip) { in patch()
Dbluetooth.rs106 fn get(&self) -> ProtoChip { in get()
132 fn patch(&self, chip: &ProtoChip) { in patch()
/tools/netsim/rust/daemon/src/devices/
Dchip.rs146 pub fn get(&self) -> Result<ProtoChip, String> { in get()