Home
last modified time | relevance | path

Searched refs:GetJsonObjectNumber64Item (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/br/
H A Dconnection_br_mock.cpp44 bool GetJsonObjectNumber64Item(const cJSON *json, const char * const string, int64_t *target) in GetJsonObjectNumber64Item() function
46 return GetConnectionBrInterface()->GetJsonObjectNumber64Item(json, string, target); in GetJsonObjectNumber64Item()
H A Dconnection_br_mock.h33 …virtual bool GetJsonObjectNumber64Item(const cJSON *json, const char * const string, int64_t *targ…
46 MOCK_METHOD3(GetJsonObjectNumber64Item, bool (const cJSON *, const char * const, int64_t *));
H A Dconnection_br_test.cpp676 EXPECT_CALL(brMock, GetJsonObjectNumber64Item).WillRepeatedly(Return(true));
709 EXPECT_CALL(brMock, GetJsonObjectNumber64Item).WillRepeatedly(Return(true));
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/udp_negotiation/src/
H A Dtrans_udp_negotiation_exchange.c92 (void)GetJsonObjectNumber64Item(msg, "MY_CHANNEL_ID", &(appInfo->peerData.channelId)); in TransUnpackReplyUdpInfo()
146 (void)GetJsonObjectNumber64Item(msg, "MY_CHANNEL_ID", &(appInfo->peerData.channelId)); in TransUnpackRequestUdpInfo()
154 (void)GetJsonObjectNumber64Item(msg, "PEER_CHANNEL_ID", &(appInfo->myData.channelId)); in TransUnpackRequestUdpInfo()
155 (void)GetJsonObjectNumber64Item(msg, "MY_CHANNEL_ID", &(appInfo->peerData.channelId)); in TransUnpackRequestUdpInfo()
/ohos5.0/foundation/communication/dsoftbus/tests/core/common/json_utils/uttest/
H A Dsoftbus_json_utils_test.cpp370 bool ret = GetJsonObjectNumber64Item(nullptr, "test", &target);
384 bool ret = GetJsonObjectNumber64Item(json, nullptr, &target);
398 bool ret = GetJsonObjectNumber64Item(json, "test", nullptr);
413 bool ret = GetJsonObjectNumber64Item(json, "test", &target);
429 bool ret = GetJsonObjectNumber64Item(json, "test", &target);
445 bool ret = GetJsonObjectNumber64Item(json, "test", &target);
/ohos5.0/foundation/communication/dsoftbus/tests/core/common/json_utils/fuzztest/jsonutils_fuzzer/
H A Djsonutils_fuzzer.cpp42 GetJsonObjectNumber64Item(object, data, &ageS64); in DoJsonUtilsFuzz()
/ohos5.0/foundation/communication/dsoftbus/core/connection/br/src/
H A Dsoftbus_conn_br_pending_packet.c190 !GetJsonObjectNumber64Item(json, KEY_ACK_SEQ_NUM, &peerSeq)) { in ConnBrOnAckRequest()
237 !GetJsonObjectNumber64Item(json, KEY_ACK_SEQ_NUM, (int64_t *)&seq)) { in ConnBrOnAckResponse()
/ohos5.0/foundation/communication/dsoftbus/core/common/include/
H A Dsoftbus_json_utils.h40 bool GetJsonObjectNumber64Item(const cJSON *json, const char * const string, int64_t *target);
/ohos5.0/foundation/communication/dsoftbus/core/common/json_utils/
H A Dsoftbus_json_utils.c134 bool GetJsonObjectNumber64Item(const cJSON *json, const char * const string, int64_t *target) in GetJsonObjectNumber64Item() function
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/
H A Dsoftbus_proxychannel_message.c853 GetJsonObjectNumber64Item(root, JSON_KEY_AUTH_SEQ, &appInfo->authSeq); in TransProxyUnpackHandshakeMsg()