/foundation/communication/dsoftbus/core/connection/common/src/ |
H A D | softbus_datahead_transform.c | 51 msg->peerId = (int16_t)SoftBusLEtoBEs((uint16_t)msg->peerId); in PackProxyMessageHead() 60 msg->peerId = (int16_t)SoftBusLtoHs((uint16_t)msg->peerId); in UnpackProxyMessageHead()
|
/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/ |
H A D | softbus_proxychannel_control.c | 44 msgHead.peerId = info->peerId; in TransProxySendInnerMessage() 125 msgHead.peerId = INVALID_CHANNEL_ID; in TransProxyHandshake() 171 msgHead.peerId = chan->peerId; in TransProxyAckHandshake() 176 retCode, chan->myId, chan->peerId); in TransProxyAckHandshake() 180 chan->myId, chan->peerId); in TransProxyAckHandshake() 213 msgHead.peerId = info->peerId; in TransProxyKeepalive() 249 msgHead.peerId in TransProxyAckKeepalive() [all...] |
H A D | softbus_proxychannel_manager.c | 96 (a->peerId == b->peerId) && in ChanIsEqual() 113 (a->peerId == b->peerId) && in ResetChanIsEqual() 145 item->peerId = info->peerId; in TransProxyUpdateAckInfo() 489 static int32_t TransProxyGetRecvMsgChanInfo(int16_t myId, int16_t peerId, ProxyChannelInfo *chanInfo) in TransProxyGetRecvMsgChanInfo() argument 499 if ((item->myId == myId) && (item->peerId == peerId)) { in TransProxyGetRecvMsgChanInfo() 773 .peerChannelId = info->peerId, in TransProxyHandshakeUnpackErrMsg() [all...] |
H A D | softbus_proxychannel_session.c | 170 msgHead.peerId = info->peerId; in TransProxyTransNormalMsg()
|
/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/proxy_channel/ |
H A D | trans_proxy_channel_test.cpp | 209 info.peerId = 0; in HWTEST_F() 235 info.peerId = 0; in HWTEST_F() 269 info.peerId = 0; in HWTEST_F() 296 info.peerId = 0; in HWTEST_F() 319 info.peerId = 0; in HWTEST_F() 350 info.peerId = 0; in HWTEST_F() 374 info.peerId = 0; in HWTEST_F() 396 info.peerId = 0; in HWTEST_F() 420 info->peerId = 0; in HWTEST_F() 446 info.peerId in HWTEST_F() [all...] |
H A D | softbus_proxychannel_manager_test.cpp | 183 chan->peerId = channelId; in BuildProxyChannelInfo() 312 chanInfo->peerId = TEST_PARSE_MESSAGE_CHANNEL; in HWTEST_F() 317 chanInfo->peerId = TEST_MESSAGE_CHANNEL_VALID_ID; in HWTEST_F() 691 msg.msgHead.peerId = TEST_NUMBER_ELEVEN; in HWTEST_F() 750 msg.msgHead.peerId = TEST_NUMBER_VALID; in HWTEST_F() 759 msg.msgHead.peerId = TEST_RESET_MESSAGE_CHANNEL_ID; in HWTEST_F() 776 msg.msgHead.peerId = channelId; in HWTEST_F() 809 msg.msgHead.peerId = TEST_NUMBER_VALID; in HWTEST_F() 815 msg.msgHead.peerId = TEST_NUMBER_TEN; in HWTEST_F() 821 msg.msgHead.peerId in HWTEST_F() [all...] |
H A D | trans_proxy_manager_test.cpp | 193 chan->peerId = channelId; in TestTransProxyAddAuthChannel() 221 chan->peerId = channelId; in TestTransProxyAddNormalChannel() 331 chan->peerId = 10; in HWTEST_F() 350 chanNormal->peerId = 11; in HWTEST_F() 665 msg.msgHead.peerId = 11; in HWTEST_F() 724 msg.msgHead.peerId = -1; in HWTEST_F() 737 msg.msgHead.peerId = TEST_RESET_MESSAGE_CHANNEL_ID; in HWTEST_F() 754 msg.msgHead.peerId = channelId; in HWTEST_F() 798 msg.msgHead.peerId = -1; in HWTEST_F() 804 msg.msgHead.peerId in HWTEST_F() [all...] |
H A D | trans_proxy_message_test.cpp | 100 chan->peerId = channelId; in TestMessageAddProxyChannel() 447 msg.msgHead.peerId = -1; in HWTEST_F() 468 msg.msgHead.peerId = TEST_PARSE_MESSAGE_CHANNEL; in HWTEST_F() 504 msg.msgHead.peerId = TEST_PARSE_MESSAGE_CHANNEL; in HWTEST_F()
|
H A D | softbus_proxychannel_message_test.cpp | 173 chan->peerId = channelId; in TestMessageAddProxyChannel() 499 msg.msgHead.peerId = -1; in HWTEST_F() 521 msg.msgHead.peerId = TEST_PARSE_MESSAGE_CHANNEL; in HWTEST_F() 551 msg.msgHead.peerId = TEST_PARSE_MESSAGE_CHANNEL; in HWTEST_F()
|
H A D | trans_proxy_session_test.cpp | 142 chan->peerId = channelId; in TestAddProxyChannel()
|
H A D | softbus_proxy_session_test.cpp | 125 chan->peerId = channelId; in TestAddProxyChannel()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | extension_companion_node.h | 28 ExtensionCompanionNode(int peerId, int flags, void* peer) in ExtensionCompanionNode() argument 29 : peerId_(peerId), flags_(flags), peer_(peer) in ExtensionCompanionNode()
|
H A D | view_model.h | 43 void RegisterCompanion(void* node, int peerId, ArkUI_Int32 flags);
|
H A D | node_api.cpp | 202 ArkUINodeHandle CreateNode(ArkUINodeType type, int peerId, ArkUI_Int32 flags) in CreateNode() argument 207 node = reinterpret_cast<ArkUINodeHandle>(ViewModel::CreateNode(type, peerId)); in CreateNode() 213 node = reinterpret_cast<ArkUINodeHandle>(ViewModel::CreateNode(type, peerId)); in CreateNode() 218 ArkUINodeHandle CreateNodeWithParams(ArkUINodeType type, int peerId, ArkUI_Int32 flags, const ArkUI_Params& params) in CreateNodeWithParams() argument 220 auto* node = reinterpret_cast<ArkUINodeHandle>(ViewModel::CreateNodeWithParams(type, peerId, params)); in CreateNodeWithParams()
|
H A D | view_model.cpp | 782 void RegisterCompanion(void* node, int peerId, ArkUI_Int32 flags) in RegisterCompanion() argument 790 auto companion = AceType::MakeRefPtr<ExtensionCompanionNode>(peerId, flags, node); in RegisterCompanion()
|
/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/include/ |
H A D | softbus_proxychannel_message.h | 72 int16_t peerId; member 124 int16_t peerId; member
|
/foundation/CastEngine/castengine_wifi_display/services/interaction/domain/rpc/ |
H A D | domain_rpc_manager.cpp | 59 bool DomainRpcManager::IsPeerExist(std::string peerId) in IsPeerExist() argument 62 if (rpcClients_.find(peerId) != rpcClients_.end()) { in IsPeerExist()
|
H A D | domain_rpc_manager.h | 34 bool IsPeerExist(std::string peerId) override;
|
/foundation/communication/dsoftbus/tests/core/transmission/fuzztest/transproxyonmessagereceived_fuzzer/ |
H A D | transproxyonmessagereceived_fuzzer.cpp | 49 proxyMessageHead->peerId = *(reinterpret_cast<const int16_t *>(data)); in InitProxyMessageHead()
|
/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/src/ |
H A D | lnn_net_ledger_mock.cpp | 91 if (strcpy_s(dstIdBuf, dstIdBufLen, peerId.c_str()) != EOK) { in ActionOfLnnConvertDlId1() 133 if (memcpy_s((*info + 1)->networkId, sizeof((*info + 1)->networkId), peerId.c_str(), peerId.length() + 1) != EOK) { in ActionOfLnnGetAllOnlineNodeInfo1()
|
/foundation/CastEngine/castengine_wifi_display/tests/unittest/interaction/domain/ |
H A D | domain_unit_test.cpp | 284 std::string peerId = "1212"; in HWTEST_F() local 285 auto ret = DomainRpcManager::GetInstance()->IsPeerExist(peerId); in HWTEST_F() 291 std::string peerId = "1212"; in HWTEST_F() local 292 DomainRpcManager::GetInstance()->rpcClients_.emplace(peerId, nullptr); in HWTEST_F() 293 auto ret = DomainRpcManager::GetInstance()->IsPeerExist(peerId); in HWTEST_F()
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/include/ |
H A D | dm_device_info.h | 360 std::string peerId;
member
|
/foundation/ability/dmsfwk/services/dtbschedmgr/src/ |
H A D | distributed_sched_permission.cpp | 216 .peerId = "",
in CheckDstSameAccount() 247 .peerId = "",
in CheckAclList() 505 .peerId = "",
in CheckAccountAccessPermission()
|
/foundation/communication/ipc/ipc/native/src/core/source/ |
H A D | message_parcel.cpp | 142 std::string peerId = sessionOfPeer->GetDeviceId(); in WriteDBinderProxy() local 150 fakeStub = new (std::nothrow) DBinderCallbackStub(peerName, peerId, localId, sessionOfPeer->GetStubIndex(), in WriteDBinderProxy()
|
/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/include/ |
H A D | lnn_net_ledger_mock.h | 215 static inline std::string peerId = "54fec99a89886bef18373f0742661809b83b2d5dac9afbaf1728b940b9d51cb5"; member in OHOS::LnnNetLedgertInterfaceMock
|