Home
last modified time | relevance | path

Searched refs:channelJson (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/core/common/dfx/statistics/instant/
H A Dinstant_statistics.cpp796 cJSON *channelJson = cJSON_CreateObject(); in InstPackChannelInfo() local
797 COMM_CHECK_AND_RETURN_LOGE(channelJson != NULL, COMM_DFX, "cJSON_CreateObject fail"); in InstPackChannelInfo()
800 (void)AddNumberToJsonObject(channelJson, "channelType", channelInfo->channelType); in InstPackChannelInfo()
801 (void)AddNumberToJsonObject(channelJson, "appType", channelInfo->appType); in InstPackChannelInfo()
802 (void)AddNumberToJsonObject(channelJson, "laneLinkType", channelInfo->laneLinkType); in InstPackChannelInfo()
803 (void)AddNumberToJsonObject(channelJson, "connectType", channelInfo->connectType); in InstPackChannelInfo()
804 (void)AddNumberToJsonObject(channelJson, "status", channelInfo->status); in InstPackChannelInfo()
805 (void)AddBoolToJsonObject(channelJson, "serverSide", channelInfo->serverSide); in InstPackChannelInfo()
806 (void)AddNumberToJsonObject(channelJson, "keepTime", channelInfo->startTime); in InstPackChannelInfo()
808 char *str = cJSON_PrintUnformatted(channelJson); in InstPackChannelInfo()
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/
H A Dgltf2_loader.cpp2462 …const auto channelsParser = [&animation](LoadResult& loadResult, const json::value& channelJson) -… in PrimitiveAttributes() argument
2467 …if (!ParseOptionalNumber<size_t>(loadResult, sampler, channelJson, "sampler", GLTF_INVALID_INDEX))… in PrimitiveAttributes()
2506 if (!ParseObject(loadResult, channelJson, "target", targetParser)) { in PrimitiveAttributes()