Searched refs:DeamonReadThread (Results 1 – 3 of 3) sorted by relevance
/developtools/hdc/test/unittest/common/ |
D | daemon_uart_test.cpp | 69 MOCK_METHOD0(DeamonReadThread, void(void)); 97 ON_CALL(mockDaemonUART, DeamonReadThread).WillByDefault([&]() { in PrepareDeamonReadThreadData() 98 return mockDaemonUART.HdcDaemonUART::DeamonReadThread(); in PrepareDeamonReadThreadData() 100 EXPECT_CALL(mockDaemonUART, DeamonReadThread).Times(AnyNumber()); in PrepareDeamonReadThreadData() 324 EXPECT_CALL(mockDaemonUART, DeamonReadThread).Times(1); 440 HWTEST_F(HdcDaemonUARTTest, DeamonReadThread, TestSize.Level1) 451 std::thread deamonRead(&MockHdcDaemonUART::DeamonReadThread, &mockDaemonUART); 476 std::thread deamonRead(&MockHdcDaemonUART::DeamonReadThread, &mockDaemonUART); 501 std::thread deamonRead(&MockHdcDaemonUART::DeamonReadThread, &mockDaemonUART); 529 std::thread deamonRead(&MockHdcDaemonUART::DeamonReadThread, &mockDaemonUART); [all …]
|
/developtools/hdc/src/daemon/ |
D | daemon_uart.h | 55 virtual void DeamonReadThread();
|
D | daemon_uart.cpp | 238 void HdcDaemonUART::DeamonReadThread() in DeamonReadThread() function in Hdc::HdcDaemonUART 293 std::thread deamonReadThread(std::bind(&HdcDaemonUART::DeamonReadThread, this)); in LoopUARTRead()
|