Home
last modified time | relevance | path

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

/developtools/hdc/src/host/
Dserver_for_client.cpp72 buf->len = sizeof(struct ChannelHandShake) + DWORD_SERIALIZE_SIZE; // only recv static size in AcceptClient()
74 buf->len = offsetof(struct ChannelHandShake, version) + DWORD_SERIALIZE_SIZE; in AcceptClient()
80 struct ChannelHandShake handShake = {}; in AcceptClient()
90 thisClass->Send(hChannel->channelId, (uint8_t *)&handShake, sizeof(struct ChannelHandShake)); in AcceptClient()
94 offsetof(struct ChannelHandShake, version)); in AcceptClient()
767 int HdcServerForClient::ChannelHandShake(HChannel hChannel, uint8_t *bufPtr, const int bytesIO) in ChannelHandShake() function in Hdc::HdcServerForClient
772 …struct ChannelHandShake *handShake = reinterpret_cast<struct ChannelHandShake *>(rebuildHandshake.… in ChannelHandShake()
813 return ChannelHandShake(hChannel, bufPtr, bytesIO); in ReadChannel()
Dserver_for_client.h56 int ChannelHandShake(HChannel hChannel, uint8_t *bufPtr, const int bytesIO);
Dclient.cpp522 ChannelHandShake *hShake = reinterpret_cast<ChannelHandShake *>(const_cast<uint8_t *>(buf)); in PreHandshake()
555 Send(hChannel->channelId, reinterpret_cast<uint8_t *>(hShake), sizeof(ChannelHandShake)); in PreHandshake()
558 …Send(hChannel->channelId, reinterpret_cast<uint8_t *>(hShake), offsetof(struct ChannelHandShake, v… in PreHandshake()
/developtools/hdc/src/common/
Dchannel.h35 struct ChannelHandShake { struct
Dchannel.cpp44 struct ChannelHandShake handshake = {}; in GetChannelHandshake()
51 … ret.insert(ret.begin(), (uint8_t *)&handshake, (uint8_t *)&handshake + sizeof(ChannelHandShake)); in GetChannelHandshake()