Home
last modified time | relevance | path

Searched refs:UpdateUARTDaemonInfo (Results 1 – 3 of 3) sorted by relevance

/developtools/hdc/test/unittest/common/
Dhost_uart_test.cpp76 MOCK_METHOD3(UpdateUARTDaemonInfo, void(const std::string &, HSession, ConnStatus));
210 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo(mySession.connectKey, &mySession, STATUS_READY))
224 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo(mySession.connectKey, &mySession, STATUS_READY))
255 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo(mySession.connectKey, &mySession, STATUS_READY))
293 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo).Times(0);
300 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo).Times(0);
325 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo("COMX", nullptr, STATUS_READY)).Times(1);
328 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo("COMY", nullptr, STATUS_READY)).Times(0);
357 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo("COMX", nullptr, STATUS_READY)).Times(1);
360 EXPECT_CALL(mockHostUART, UpdateUARTDaemonInfo("COMY", nullptr, STATUS_READY)).Times(0);
[all …]
/developtools/hdc/src/host/
Dhost_uart.cpp412 void HdcHostUART::UpdateUARTDaemonInfo(const std::string &connectKey, HSession hSession, in EnumSerialPort() function in Hdc::HdcHostUART
454 UpdateUARTDaemonInfo(hSession->connectKey, hSession, STATUS_UNKNOW); in EnumSerialPort()
485 UpdateUARTDaemonInfo(hSession->connectKey, hSession, STATUS_READY); in EnumSerialPort()
546 UpdateUARTDaemonInfo(port, nullptr, STATUS_READY); in EnumSerialPort()
556 UpdateUARTDaemonInfo(port, nullptr, STATUS_UNKNOW); in EnumSerialPort()
569 UpdateUARTDaemonInfo(hUART->serialPort, nullptr, STATUS_UNKNOW); in EnumSerialPort()
571 UpdateUARTDaemonInfo(connectKey, nullptr, STATUS_READY); in EnumSerialPort()
658 UpdateUARTDaemonInfo(session->connectKey, session, STATUS_OFFLINE); in EnumSerialPort()
Dhost_uart.h78 …virtual void UpdateUARTDaemonInfo(const std::string &connectKey, HSession hSession, ConnStatus con…