Home
last modified time | relevance | path

Searched refs:respMsg (Results 1 – 4 of 4) sorted by relevance

/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
DVehicleEmulator.cpp78 VehicleEmulator::EmulatorMessage& respMsg) { in doGetConfig() argument
82 respMsg.set_msg_type(emulator::GET_CONFIG_RESP); in doGetConfig()
83 respMsg.set_status(emulator::ERROR_INVALID_PROPERTY); in doGetConfig()
88 emulator::VehiclePropConfig* protoCfg = respMsg.add_config(); in doGetConfig()
90 respMsg.set_status(emulator::RESULT_OK); in doGetConfig()
97 VehicleEmulator::EmulatorMessage& respMsg) { in doGetConfigAll() argument
100 respMsg.set_msg_type(emulator::GET_CONFIG_ALL_RESP); in doGetConfigAll()
101 respMsg.set_status(emulator::RESULT_OK); in doGetConfigAll()
104 emulator::VehiclePropConfig* protoCfg = respMsg.add_config(); in doGetConfigAll()
110 VehicleEmulator::EmulatorMessage& respMsg) { in doGetProperty() argument
[all …]
DVehicleEmulator.h76 emulator::EmulatorMessage& respMsg) override;
82 void doGetConfig(EmulatorMessage const& rxMsg, EmulatorMessage& respMsg);
83 void doGetConfigAll(EmulatorMessage const& rxMsg, EmulatorMessage& respMsg);
84 void doGetProperty(EmulatorMessage const& rxMsg, EmulatorMessage& respMsg);
85 void doGetPropertyAll(EmulatorMessage const& rxMsg, EmulatorMessage& respMsg);
86 void doSetProperty(EmulatorMessage const& rxMsg, EmulatorMessage& respMsg);
DCommConn.cpp66 emulator::EmulatorMessage respMsg; in readThread() local
67 mMessageProcessor->processMessage(rxMsg, respMsg); in readThread()
69 sendMessage(respMsg); in readThread()
DCommConn.h48 emulator::EmulatorMessage& respMsg) = 0;