Home
last modified time | relevance | path

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

/developtools/hdc/test/unittest/common/
Ddaemon_uart_test.cpp67 MOCK_METHOD0(PrepareBufForRead, int(void));
191 EXPECT_CALL(mockDaemonUART, PrepareBufForRead).Times(0);
203 EXPECT_CALL(mockDaemonUART, PrepareBufForRead).Times(1);
214 EXPECT_CALL(mockDaemonUART, PrepareBufForRead).Times(1);
258 EXPECT_CALL(mockDaemonUART, PrepareBufForRead).Times(0);
268 EXPECT_CALL(mockDaemonUART, PrepareBufForRead).Times(0);
278 EXPECT_CALL(mockDaemonUART, PrepareBufForRead).Times(1).WillOnce(Return(-1));
288 EXPECT_CALL(mockDaemonUART, PrepareBufForRead).Times(1);
391 HWTEST_F(HdcDaemonUARTTest, PrepareBufForRead, TestSize.Level1)
393 ON_CALL(mockDaemonUART, PrepareBufForRead).WillByDefault([&]() { in __anond4864eb80702()
[all …]
/developtools/hdc/src/daemon/
Ddaemon_uart.h53 virtual int PrepareBufForRead();
Ddaemon_uart.cpp80 int HdcDaemonUART::PrepareBufForRead() in PrepareBufForRead() function in Hdc::HdcDaemonUART
105 if ((PrepareBufForRead() != RET_SUCCESS)) { in WatcherTimerCallBack()