Home
last modified time | relevance | path

Searched refs:UvTimerStart (Results 1 – 5 of 5) sorted by relevance

/developtools/hdc/test/unittest/common/
Dhost_uart_test.cpp61 MOCK_METHOD4(UvTimerStart, bool(uv_timer_t *, uv_timer_cb, uint64_t, uint64_t));
437 EXPECT_CALL(mockInterface, UvTimerStart(Field(&uv_timer_t::data, &mySession),
462 EXPECT_CALL(mockInterface, UvTimerStart(Field(&uv_timer_t::data, &mySession),
483 EXPECT_CALL(mockInterface, UvTimerStart(Field(&uv_timer_t::data, &mockHostUART),
492 EXPECT_CALL(mockInterface, UvTimerStart(Field(&uv_timer_t::data, &mockHostUART),
Duart_test.cpp632 EXPECT_NE(defaultInterface.UvTimerStart(nullptr, nullptr, 0, 0), 0);
/developtools/hdc/src/host/
Dhost_uart.cpp510 if (externInterface.UvTimerStart(&devUartWatcher, UvWatchUartDevPlugin, delay, interval) != 0) { in EnumSerialPort()
598 if (externInterface.UvTimerStart(waitTimeDoCmd, server.UartPreConnect, UV_TIMEOUT, UV_REPEAT) != in EnumSerialPort()
/developtools/hdc/src/common/
Duart.h151 virtual bool UvTimerStart(uv_timer_t *handle, uv_timer_cb cb, uint64_t timeout,
Duart.cpp75 bool ExternInterface::UvTimerStart(uv_timer_t *handle, uv_timer_cb cb, uint64_t timeout, in UvTimerStart() function in Hdc::ExternInterface