Home
last modified time | relevance | path

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

/developtools/hdc/test/unittest/common/
Duart_test.cpp58 MOCK_METHOD3(UvRead, int(uv_stream_t *, uv_alloc_cb, uv_read_cb));
427 EXPECT_CALL(mockInterface, UvRead((uv_stream_t *)tcp, alloc, cb)).Times(1);
431 EXPECT_CALL(mockInterface, UvRead).Times(0);
435 EXPECT_CALL(mockInterface, UvRead).Times(1).WillOnce(Return(-1));
629 EXPECT_NE(defaultInterface.UvRead((uv_stream_t *)&dummyPip, nullptr, nullptr), 0);
/developtools/hdc/src/common/
Duart.h145 virtual int UvRead(uv_stream_t *, uv_alloc_cb, uv_read_cb);
Duart.cpp50 int ExternInterface::UvRead(uv_stream_t *stream, uv_alloc_cb allocCallBack, uv_read_cb readCallBack) in UvRead() function in Hdc::ExternInterface
982 if (externInterface.UvRead((uv_stream_t *)&hSession->dataPipe[STREAM_WORK], in ReadyForWorkThread()