Home
last modified time | relevance | path

Searched refs:OnTransferError (Results 1 – 9 of 9) sorted by relevance

/developtools/hdc/test/unittest/common/
Dhost_uart_test.cpp90 MOCK_METHOD1(OnTransferError, void(const HSession));
660 EXPECT_CALL(mockHostUART, OnTransferError).Times(1);
668 EXPECT_CALL(mockHostUART, OnTransferError).Times(0);
680 EXPECT_CALL(mockHostUART, OnTransferError).Times(0);
694 EXPECT_CALL(mockHostUART, OnTransferError).Times(0);
818 HWTEST_F(HdcHostUARTTest, OnTransferError, TestSize.Level1)
820 EXPECT_CALL(mockHostUART, OnTransferError).WillRepeatedly(Invoke([&](const HSession session) { in __anonf147a4621102()
821 return mockHostUART.HdcHostUART::OnTransferError(session); in __anonf147a4621102()
823 mockHostUART.OnTransferError(nullptr);
834 mockHostUART.OnTransferError(&mySession);
Ddaemon_uart_test.cpp679 HWTEST_F(HdcDaemonUARTTest, OnTransferError, TestSize.Level1)
685 mockDaemonUART.OnTransferError(&mySession);
Duart_test.cpp73 MOCK_METHOD1(OnTransferError, void(const HSession));
/developtools/hdc/src/daemon/
Ddaemon_uart.h33 virtual void OnTransferError(const HSession session) override;
Ddaemon_uart.cpp176 OnTransferError(hSession); in ResetOldSession()
188 void HdcDaemonUART::OnTransferError(const HSession session) in OnTransferError() function in Hdc::HdcDaemonUART
/developtools/hdc/src/host/
Dhost_uart.h49 virtual void OnTransferError(const HSession session) override;
Dhost_uart.cpp90 OnTransferError(hSession); in UartReadThread()
649 void HdcHostUART::OnTransferError(const HSession session) in EnumSerialPort() function in Hdc::HdcHostUART
/developtools/hdc/src/common/
Duart.h210 virtual void OnTransferError(const HSession session) = 0;
Duart.cpp559 OnTransferError(hSession); in SendUARTRaw()
779 OnTransferError(GetSession(it->sessionId)); in SendPkgInUARTOutMap()