Home
last modified time | relevance | path

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

/tools/netsim/rust/proto/src/
Dconfiguration.rs749 pub struct Controller { struct
766 impl<'a> ::std::default::Default for &'a Controller { implementation
767 fn default() -> &'a Controller { in default()
768 <Controller as ::protobuf::Message>::default_instance() in default()
772 impl Controller { implementation
773 pub fn new() -> Controller { in new()
823 |m: &Controller| { &m.preset }, in generated_message_descriptor_data()
824 |m: &mut Controller| { &mut m.preset }, in generated_message_descriptor_data()
828 |m: &Controller| { &m.features }, in generated_message_descriptor_data()
829 |m: &mut Controller| { &mut m.features }, in generated_message_descriptor_data()
[all …]
Dstartup.rs455 pub bt_properties: ::protobuf::MessageField<super::configuration::Controller>,
512 …sh(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::configuration::Controller>( in generated_message_descriptor_data()
Dconfig.rs743 pub properties: ::protobuf::MessageField<super::configuration::Controller>,
767 …sh(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::configuration::Controller>( in generated_message_descriptor_data()
Dmodel.rs1037 pub bt_properties: ::protobuf::MessageField<super::super::configuration::Controller>,
1072 …otobuf::reflect::rt::v2::make_message_field_accessor::<_, super::super::configuration::Controller>( in generated_message_descriptor_data()
2254 pub bt_properties: ::protobuf::MessageField<super::configuration::Controller>,
2357 …sh(::protobuf::reflect::rt::v2::make_message_field_accessor::<_, super::configuration::Controller>( in generated_message_descriptor_data()
/tools/netsim/ui/ts/netsim/
Dmodel.ts2 import type {Controller} from '../rootcanal/configuration';
89 btProperties: Controller|undefined;
224 btProperties: Controller|undefined;
/tools/netsim/ui/ts/rootcanal/
Dconfiguration.ts52 export interface Controller { interface
83 configuration: Controller|undefined;
/tools/netsim/src/hci/
Dbluetooth_facade.cc119 std::shared_ptr<rootcanal::configuration::Controller> controller_proto_;
203 controller_proto_ = std::make_shared<rootcanal::configuration::Controller>( in Start()
281 std::shared_ptr<rootcanal::configuration::Controller> controller_proto;
288 std::shared_ptr<rootcanal::configuration::Controller> controller_proto, in ChipInfo()
347 std::shared_ptr<rootcanal::configuration::Controller> controller_proto = in Add()
351 rootcanal::configuration::Controller custom_proto; in Add()
366 std::make_shared<rootcanal::configuration::Controller>(custom_proto); in Add()
/tools/netsim/rust/daemon/src/bluetooth/
Dmocked.rs22 use netsim_proto::configuration::Controller as RootcanalController;
/tools/netsim/proto/netsim/
Dmodel.proto89 // rootcanal Controller Properties
90 rootcanal.configuration.Controller bt_properties = 4;
233 rootcanal.configuration.Controller bt_properties = 7;
Dconfig.proto57 optional rootcanal.configuration.Controller properties = 1;
Dhci_packet.proto34 // Host Controller:
Dstartup.proto67 rootcanal.configuration.Controller bt_properties = 8;
/tools/netsim/rust/daemon/src/wireless/
Dbluetooth.rs24 use netsim_proto::configuration::Controller as RootcanalController;
/tools/netsim/rust/daemon/src/devices/
Dchip.rs25 use netsim_proto::configuration::Controller as ProtoController;
Ddevices_handler.rs44 use netsim_proto::configuration::Controller;
236 let bt_properties_proto = Controller::parse_from_bytes(bt_properties.as_slice()); in add_chip_cxx()