Home
last modified time | relevance | path

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

/developtools/hdc/test/unittest/common/
Ddaemon_uart_test.cpp64 MOCK_METHOD0(OpenUartDevice, int(void));
190 EXPECT_CALL(mockDaemonUART, OpenUartDevice).Times(0);
202 EXPECT_CALL(mockDaemonUART, OpenUartDevice).Times(1);
213 EXPECT_CALL(mockDaemonUART, OpenUartDevice).Times(1);
257 EXPECT_CALL(mockDaemonUART, OpenUartDevice).Times(0);
267 EXPECT_CALL(mockDaemonUART, OpenUartDevice).Times(1).WillOnce(Return(-1));
277 EXPECT_CALL(mockDaemonUART, OpenUartDevice).Times(1);
287 EXPECT_CALL(mockDaemonUART, OpenUartDevice).Times(1);
/developtools/hdc/src/daemon/
Ddaemon_uart.h49 virtual int OpenUartDevice();
Ddaemon_uart.cpp101 if ((OpenUartDevice() != RET_SUCCESS)) { in WatcherTimerCallBack()
135 int HdcDaemonUART::OpenUartDevice() in OpenUartDevice() function in Hdc::HdcDaemonUART