Home
last modified time | relevance | path

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

/tools/netsim/rust/daemon/src/devices/
Dchip.rs168 pub fn remove_chip(chip_id: &ChipIdentifier) -> Option<Arc<Chip>> { in remove_chip() function
169 CHIP_MANAGER.remove_chip(chip_id) in remove_chip()
205 fn remove_chip(&self, chip_id: &ChipIdentifier) -> Option<Arc<Chip>> { in remove_chip() method
Ddevices_handler.rs333 pub fn remove_chip(device_id: DeviceIdentifier, chip_id: ChipIdentifier) -> Result<(), String> { in remove_chip() function
338 let radio_stats = device.remove_chip(&chip_id)?; in remove_chip()
382 remove_chip(device_id, chip_id) in delete_chip()
388 let _ = remove_chip(DeviceIdentifier(device_id), ChipIdentifier(chip_id)); in remove_chip_cxx()
1362 remove_chip(bt_chip_result.device_id, bt_chip_result.chip_id).unwrap(); in test_remove_chip()
1375 remove_chip(wifi_chip_result.device_id, wifi_chip_result.chip_id).unwrap(); in test_remove_chip()
1379 remove_chip(bt_chip_2_result.device_id, bt_chip_2_result.chip_id).unwrap(); in test_remove_chip()
1393 match remove_chip(bt_chip_result.device_id, ChipIdentifier(9999)) { in test_remove_chip_error()
1399 match remove_chip(DeviceIdentifier(9999), bt_chip_result.chip_id) { in test_remove_chip_error()
Ddevice.rs175 pub fn remove_chip(&self, chip_id: &ChipIdentifier) -> Result<Vec<ProtoRadioStats>, String> { in remove_chip() method
185 chip::remove_chip(chip_id); in remove_chip()
/tools/netsim/rust/daemon/src/transport/
Dsocket.rs17 use crate::devices::devices_handler::{add_chip, remove_chip};
124 if let Err(err) = remove_chip(result.device_id, result.chip_id) { in handle_hci_client()
Dwebsocket.rs25 use crate::devices::devices_handler::{add_chip, remove_chip};
194 if let Err(err) = remove_chip(result.device_id, result.chip_id) { in run_websocket_transport()
Dfd.rs24 use crate::devices::devices_handler::{add_chip, remove_chip};
159 if let Err(err) = remove_chip(device_id, chip_id) { in fd_reader()
/tools/netsim/rust/daemon/src/grpc_server/
Dbackend.rs127 if let Err(e) = devices_handler::remove_chip(result.device_id, result.chip_id) { in stream_packets()