Searched refs:rxMsg (Results 1 – 4 of 4) sorted by relevance
/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/ |
D | VehicleEmulator.cpp | 63 void VehicleEmulator::doGetConfig(VehicleEmulator::EmulatorMessage& rxMsg, in doGetConfig() argument 66 emulator::VehiclePropGet getProp = rxMsg.prop(0); in doGetConfig() 95 void VehicleEmulator::doGetProperty(VehicleEmulator::EmulatorMessage& rxMsg, in doGetProperty() argument 98 emulator::VehiclePropGet getProp = rxMsg.prop(0); in doGetProperty() 135 void VehicleEmulator::doSetProperty(VehicleEmulator::EmulatorMessage& rxMsg, in doSetProperty() argument 137 emulator::VehiclePropValue protoVal = rxMsg.value(0); in doSetProperty() 197 emulator::EmulatorMessage rxMsg; in parseRxProtoBuf() local 200 if (rxMsg.ParseFromArray(msg.data(), static_cast<int32_t>(msg.size()))) { in parseRxProtoBuf() 201 switch (rxMsg.msg_type()) { in parseRxProtoBuf() 203 doGetConfig(rxMsg, respMsg); in parseRxProtoBuf() [all …]
|
D | VehicleEmulator.h | 87 void doGetConfig(EmulatorMessage& rxMsg, EmulatorMessage& respMsg); 88 void doGetConfigAll(EmulatorMessage& rxMsg, EmulatorMessage& respMsg); 89 void doGetProperty(EmulatorMessage& rxMsg, EmulatorMessage& respMsg); 90 void doGetPropertyAll(EmulatorMessage& rxMsg, EmulatorMessage& respMsg); 91 void doSetProperty(EmulatorMessage& rxMsg, EmulatorMessage& respMsg); 98 void rxMsg();
|
/hardware/interfaces/contexthub/1.0/default/ |
D | Contexthub.cpp | 348 const struct hub_message_t *rxMsg, in contextHubCb() argument 352 if (rxMsg == nullptr) { in contextHubCb() 370 if (rxMsg->message_type < CONTEXT_HUB_TYPE_PRIVATE_MSG_BASE) { in contextHubCb() 372 rxMsg->message_type, in contextHubCb() 373 static_cast<const uint8_t *>(rxMsg->message), in contextHubCb() 374 rxMsg->message_len); in contextHubCb() 378 msg.appName = rxMsg->app_name.id; in contextHubCb() 379 msg.msgType = rxMsg->message_type; in contextHubCb() 380 msg.msg = std::vector<uint8_t>(static_cast<const uint8_t *>(rxMsg->message), in contextHubCb() 381 static_cast<const uint8_t *>(rxMsg->message) + in contextHubCb() [all …]
|
D | Contexthub.h | 104 const struct hub_message_t *rxMsg,
|