Home
last modified time | relevance | path

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

/hardware/interfaces/automotive/can/1.0/tools/configurator/
Dcanprototools.cpp102 const auto ttyname = pb_bus.slcan().ttyname(); in fromPbBus()
103 const auto serialno = pb_bus.slcan().serialno(); in fromPbBus()
109 ICanController::BusConfig::InterfaceId::Slcan slcan = {}; in fromPbBus() local
110 if (!ttyname.empty()) slcan.ttyname(ttyname); in fromPbBus()
111 if (!serialno.empty()) slcan.serialno({serialno.begin(), serialno.end()}); in fromPbBus()
112 bus_cfg.interfaceId.slcan(slcan); in fromPbBus()
/hardware/interfaces/automotive/can/aidl/default/tools/configurator/
Dcanprototools.cpp114 const std::string ttyname = pb_bus.slcan().ttyname(); in fromPbBus()
115 const std::vector<std::string> serials = {pb_bus.slcan().serialno().begin(), in fromPbBus()
116 pb_bus.slcan().serialno().end()}; in fromPbBus()
123 SlcanInterface slcan = {}; in fromPbBus() local
125 slcan.interfaceId.set<SlcanInterface::InterfaceId::Tag::ttyname>(ttyname); in fromPbBus()
127 slcan.interfaceId.set<SlcanInterface::InterfaceId::Tag::serialno>(serials); in fromPbBus()
128 bus_cfg.interfaceId.set<BusConfig::InterfaceId::Tag::slcan>(slcan); in fromPbBus()
/hardware/interfaces/automotive/can/1.0/default/
DCanController.cpp257 else if (config.interfaceId.getDiscriminator() == IfIdDisc::slcan) { in upInterface()
258 auto& slcan = config.interfaceId.slcan(); in upInterface() local
260 if (slcan.getDiscriminator() == IfId::Slcan::hidl_discriminator::serialno) { in upInterface()
262 auto selectedDevice = findUsbDevice(slcan.serialno()); in upInterface()
270 ttyName = slcan.ttyname(); in upInterface()
/hardware/interfaces/automotive/can/1.0/tools/
Dcanhalctrl.cpp72 IfCfg::Slcan slcan = {}; in up() local
73 slcan.ttyname(interface); in up()
74 config.interfaceId.slcan(slcan); in up()
/hardware/interfaces/automotive/can/1.0/default/tests/fuzzer/
DAutomotiveCanV1_0Fuzzer.cpp91 CanController::BusConfig::InterfaceId::Slcan slcan = {}; in invokeUpInterface() local
94 slcan.serialno( in invokeUpInterface()
97 slcan.ttyname(ifname); in invokeUpInterface()
99 config.interfaceId.slcan(slcan); in invokeUpInterface()
/hardware/interfaces/automotive/can/1.0/vts/functional/
DVtsHalCanControllerV1_0TargetTest.cpp126 IfId::Slcan slcan = {}; in up() local
127 slcan.ttyname(ifname); in up()
128 config.interfaceId.slcan(slcan); in up()
235 slcanTtynameCfg.slcan(slcanTtyname); in TEST_P()
240 slcanSerialCfg.slcan(slcanSerial); in TEST_P()
DVtsHalCanBusV1_0TargetTest.cpp85 IfId::Slcan slcan = {}; in up() local
86 slcan.ttyname(ifname); in up()
87 config.interfaceId.slcan(slcan); in up()
/hardware/interfaces/automotive/can/aidl/aidl_api/android.hardware.automotive.can/1/android/hardware/automotive/can/
DBusConfig.aidl43 android.hardware.automotive.can.SlcanInterface slcan;
/hardware/interfaces/automotive/can/aidl/aidl_api/android.hardware.automotive.can/current/android/hardware/automotive/can/
DBusConfig.aidl43 android.hardware.automotive.can.SlcanInterface slcan;
/hardware/interfaces/automotive/can/aidl/android/hardware/automotive/can/
DBusConfig.aidl58 SlcanInterface slcan;
/hardware/interfaces/automotive/can/1.0/tools/libcanhaltools/
Dlibcanhaltools.cpp52 case IfIdDisc::slcan: in getIftype()
/hardware/interfaces/automotive/can/aidl/default/tools/configurator/proto/
Dcanbus_config.proto43 IfaceSlcan slcan = 3; field
/hardware/interfaces/automotive/can/1.0/tools/configurator/proto/
Dcanbus_config.proto43 IfaceSlcan slcan = 3; field
/hardware/interfaces/automotive/can/aidl/default/
DCanController.cpp281 else if (config.interfaceId.getTag() == BusConfig::InterfaceId::Tag::slcan) { in upBus()
282 auto& slcanif = config.interfaceId.get<BusConfig::InterfaceId::Tag::slcan>(); in upBus()
/hardware/interfaces/automotive/can/1.0/
DICanController.hal145 } slcan;