Home
last modified time | relevance | path

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

/developtools/hdc/test/unittest/common/
Dhost_uart_test.cpp78 MOCK_METHOD0(StartUartSendThread, bool());
488 EXPECT_CALL(mockHostUART, StartUartSendThread()).Times(1).WillOnce(Return(false));
550 HWTEST_F(HdcHostUARTTest, StartUartSendThread, TestSize.Level1)
552 EXPECT_CALL(mockHostUART, StartUartSendThread).WillRepeatedly([&]() { in __anon41276a340a02()
553 return mockHostUART.HdcHostUART::StartUartSendThread(); in __anon41276a340a02()
556 EXPECT_TRUE(mockHostUART.StartUartSendThread());
/developtools/hdc/src/host/
Dhost_uart.h61 virtual bool StartUartSendThread();
Dhost_uart.cpp463 bool HdcHostUART::StartUartSendThread() in EnumSerialPort() function in Hdc::HdcHostUART
513 if (!StartUartSendThread()) { in EnumSerialPort()