Home
last modified time | relevance | path

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

/developtools/hdc/src/host/
Dserver_for_client.cpp69 buf->len = sizeof(struct ChannelHandShake) + DWORD_SERIALIZE_SIZE; // only recv static size in AcceptClient()
71 buf->len = offsetof(struct ChannelHandShake, version) + DWORD_SERIALIZE_SIZE; in AcceptClient()
77 struct ChannelHandShake handShake = {}; in AcceptClient()
87 thisClass->Send(hChannel->channelId, (uint8_t *)&handShake, sizeof(struct ChannelHandShake)); in AcceptClient()
91 offsetof(struct ChannelHandShake, version)); in AcceptClient()
755 int HdcServerForClient::ChannelHandShake(HChannel hChannel, uint8_t *bufPtr, const int bytesIO) in ChannelHandShake() function in Hdc::HdcServerForClient
760 …struct ChannelHandShake *handShake = reinterpret_cast<struct ChannelHandShake *>(rebuildHandshake.… in ChannelHandShake()
800 return ChannelHandShake(hChannel, bufPtr, bytesIO); in ReadChannel()
Dserver_for_client.h56 int ChannelHandShake(HChannel hChannel, uint8_t *bufPtr, const int bytesIO);
Dclient.cpp518 ChannelHandShake *hShake = reinterpret_cast<ChannelHandShake *>(const_cast<uint8_t *>(buf)); in PreHandshake()
551 Send(hChannel->channelId, reinterpret_cast<uint8_t *>(hShake), sizeof(ChannelHandShake)); in PreHandshake()
554 …Send(hChannel->channelId, reinterpret_cast<uint8_t *>(hShake), offsetof(struct ChannelHandShake, v… in PreHandshake()
/developtools/hdc/src/common/
Dchannel.h35 struct ChannelHandShake { struct
Dchannel.cpp43 struct ChannelHandShake handshake = {}; in GetChannelHandshake()
50 … ret.insert(ret.begin(), (uint8_t *)&handshake, (uint8_t *)&handshake + sizeof(ChannelHandShake)); in GetChannelHandshake()