Home
last modified time | relevance | path

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

/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
DCommConn.cpp34 void CommConn::start() { in start()
35 mReadThread = std::make_unique<std::thread>(std::bind(&CommConn::readThread, this)); in start()
38 void CommConn::stop() { in stop()
44 void CommConn::sendMessage(emulator::EmulatorMessage const& msg) { in sendMessage()
55 void CommConn::readThread() { in readThread()
DCommConn.h55 class CommConn {
57 CommConn(MessageProcessor* messageProcessor) : mMessageProcessor(messageProcessor) {} in CommConn() function
59 virtual ~CommConn() {} in ~CommConn()
DPipeComm.cpp36 PipeComm::PipeComm(MessageProcessor* messageProcessor) : CommConn(messageProcessor), mPipeFd(-1) {} in PipeComm()
49 CommConn::start(); in start()
57 CommConn::stop(); in stop()
DPipeComm.h39 class PipeComm : public CommConn {
DSocketComm.h83 class SocketConn : public CommConn {
DSocketComm.cpp140 : CommConn(messageProcessor), mSockFd(sfd) {} in SocketConn()
/hardware/interfaces/automotive/vehicle/2.0/default/
DAndroid.bp61 "impl/vhal_v2_0/CommConn.cpp",