Home
last modified time | relevance | path

Searched refs:ProxyMessage (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/fuzztest/transproxyonmessagereceived_fuzzer/
H A Dtransproxyonmessagereceived_fuzzer.cpp59 static void InitProxyMessage(const uint8_t *data, size_t size, ProxyMessage *proxyMessage) in InitProxyMessage()
71 if ((data == nullptr) || (size < sizeof(ProxyMessage))) { in TransProxyOnMessageReceivedTest()
75 ProxyMessage proxyMessage; in TransProxyOnMessageReceivedTest()
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/proxy_channel/
H A Dsoftbus_proxychannel_message_test.cpp468 ProxyMessage msg;
469 int32_t len = sizeof(ProxyMessage);
471 char *buf = (char *)SoftBusCalloc(sizeof(ProxyMessage));
515 ProxyMessage msg, outMsg;
516 int32_t len = sizeof(ProxyMessage);
544 ProxyMessage msg, outMsg;
545 int32_t len = sizeof(ProxyMessage);
888 ProxyMessage msg;
889 int32_t len = sizeof(ProxyMessage);
932 ProxyMessage msg;
[all …]
H A Dsoftbus_proxychannel_manager_test.cpp534 ProxyMessage msg;
558 ProxyMessage msg;
594 ProxyMessage msg;
627 ProxyMessage msg;
658 ProxyMessage msg;
709 ProxyMessage *msg = (ProxyMessage *)SoftBusCalloc(sizeof(ProxyMessage));
855 ProxyMessage *msg = (ProxyMessage *)SoftBusCalloc(sizeof(ProxyMessage));
1109 ProxyMessage *msg = (ProxyMessage *)SoftBusCalloc(sizeof(ProxyMessage));
H A Dtrans_proxy_message_test.cpp417 ProxyMessage msg;
418 int32_t len = sizeof(ProxyMessage);
419 char *buf = (char *)SoftBusCalloc(sizeof(ProxyMessage));
463 ProxyMessage msg, outMsg;
464 int32_t len = sizeof(ProxyMessage);
465 char *buf = (char *)SoftBusCalloc(sizeof(ProxyMessage));
498 ProxyMessage msg, outMsg;
499 int32_t len = sizeof(ProxyMessage);
500 char *buf = (char *)SoftBusCalloc(sizeof(ProxyMessage));
H A Dtrans_proxy_manager_test.cpp640 ProxyMessage msg;
679 ProxyMessage msg;
715 ProxyMessage msg;
752 ProxyMessage msg;
794 ProxyMessage msg;
H A Dsoftbus_trans_proxy_transceiver_test.cpp634 ProxyMessage msg;
635 memset_s(&msg, sizeof(ProxyMessage), 0, sizeof(ProxyMessage));
H A Dtrans_proxy_channel_test.cpp484 ProxyMessage msg;
608 ProxyMessage msg;
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/include/
H A Dsoftbus_proxychannel_message.h83 } ProxyMessage; typedef
168 int32_t TransProxyParseMessage(char *data, int32_t len, ProxyMessage *msg, AuthHandle *auth);
H A Dsoftbus_proxychannel_manager.h52 void TransProxyOnMessageReceived(const ProxyMessage *msg);
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/
H A Dsoftbus_proxychannel_manager.c799 ProxyChannelInfo *info, const ProxyMessage *msg, int32_t errCode, uint16_t *fastDataSize) in TransProxyHandshakeUnpackRightMsg()
833 void TransProxyProcessHandshakeAckMsg(const ProxyMessage *msg) in TransProxyProcessHandshakeAckMsg()
1007 static int32_t TransProxyFillChannelInfo(const ProxyMessage *msg, ProxyChannelInfo *chan) in TransProxyFillChannelInfo()
1063 void TransProxyProcessHandshakeAuthMsg(const ProxyMessage *msg) in TransProxyProcessHandshakeAuthMsg()
1142 static int32_t TransProxyProcessHandshake(ProxyChannelInfo *chan, const ProxyMessage *msg) in TransProxyProcessHandshake()
1170 void TransProxyProcessHandshakeMsg(const ProxyMessage *msg) in TransProxyProcessHandshakeMsg()
1296 void TransProxyProcessResetMsg(const ProxyMessage *msg) in TransProxyProcessResetMsg()
1350 void TransProxyProcessKeepAlive(const ProxyMessage *msg) in TransProxyProcessKeepAlive()
1380 void TransProxyProcessKeepAliveAck(const ProxyMessage *msg) in TransProxyProcessKeepAliveAck()
1407 void TransProxyProcessDataRecv(const ProxyMessage *msg) in TransProxyProcessDataRecv()
[all …]
H A Dsoftbus_proxychannel_transceiver.c834 static int32_t TransProxySendBadKeyMessage(ProxyMessage *msg, const AuthHandle *authHandle) in TransProxySendBadKeyMessage()
862 ProxyMessage msg; in TransProxyOnDataReceived()
867 (void)memset_s(&msg, sizeof(ProxyMessage), 0, sizeof(ProxyMessage)); in TransProxyOnDataReceived()
H A Dsoftbus_proxychannel_message.c37 static int32_t TransProxyParseMessageHead(char *data, int32_t len, ProxyMessage *msg) in TransProxyParseMessageHead()
210 static int32_t GetAuthIdReDecrypt(AuthHandle *authHandle, ProxyMessage *msg, uint8_t *decData, uint… in GetAuthIdReDecrypt()
244 static int32_t TransProxyParseMessageNoDecrypt(ProxyMessage *msg) in TransProxyParseMessageNoDecrypt()
260 int32_t TransProxyParseMessage(char *data, int32_t len, ProxyMessage *msg, AuthHandle *auth) in TransProxyParseMessage()