Home
last modified time | relevance | path

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

/developtools/hdc/src/test/jdwp/
DHdcJdwpSimulator.cpp39 RetErrCode HdcJdwpSimulator::SendToStream(uv_stream_t *handleStream, const uint8_t *buf, in SendToStream() function in HdcJdwpSimulator
125 SendToStream(client, buf, HANDSHAKE_MESSAGE.size() + nread + 1, in ProcessIncoming()
221 thisClass->SendToStream(reinterpret_cast<uv_stream_t *>(&ctxJdwp->pipe), info, pkgSize, in ConnectJdwp()
237 thisClass->SendToStream(reinterpret_cast<uv_stream_t *>(&ctxJdwp->pipe), in ConnectJdwp()
DHdcJdwpSimulator.h52 static RetErrCode SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int bufLen,
/developtools/hdc/test/unittest/common/
Duart_test.cpp59 MOCK_METHOD3(SendToStream, int(uv_stream_t *, const uint8_t *, const int));
353 EXPECT_CALL(mockInterface, SendToStream).Times(0);
394 EXPECT_CALL(mockInterface, SendToStream).Times(0);
627 EXPECT_NE(defaultInterface.SendToStream(nullptr, nullptr, 0), 0);
Dhost_uart_test.cpp58 MOCK_METHOD3(SendToStream, int(uv_stream_t *, const uint8_t *, const int));
/developtools/hdc/src/common/
Dbase.h33 int SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int bufLen);
Duart.h143 virtual int SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int bufLen);
Duart.cpp36 int ExternInterface::SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int len) in SendToStream() function in Hdc::ExternInterface
38 return Base::SendToStream(handleStream, buf, len); in SendToStream()
Dbase.cpp409 int SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int bufLen) in SendToStream() function
/developtools/hdc/src/test/
Dut_mod.cpp216 …Base::SendToStream((uv_stream_t *)req->handle, (uint8_t *)MESSAGE_SUCCESS.c_str(), MESSAGE_SUCCESS… in UtForwardConnect()