Searched refs:SendToStream (Results 1 – 9 of 9) sorted by relevance
/developtools/hdc/src/test/jdwp/ |
D | HdcJdwpSimulator.cpp | 39 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()
|
D | HdcJdwpSimulator.h | 52 static RetErrCode SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int bufLen,
|
/developtools/hdc/test/unittest/common/ |
D | uart_test.cpp | 59 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);
|
D | host_uart_test.cpp | 58 MOCK_METHOD3(SendToStream, int(uv_stream_t *, const uint8_t *, const int));
|
/developtools/hdc/src/common/ |
D | base.h | 33 int SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int bufLen);
|
D | uart.h | 143 virtual int SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int bufLen);
|
D | uart.cpp | 36 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()
|
D | base.cpp | 409 int SendToStream(uv_stream_t *handleStream, const uint8_t *buf, const int bufLen) in SendToStream() function
|
/developtools/hdc/src/test/ |
D | ut_mod.cpp | 216 …Base::SendToStream((uv_stream_t *)req->handle, (uint8_t *)MESSAGE_SUCCESS.c_str(), MESSAGE_SUCCESS… in UtForwardConnect()
|