Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/av_transport/av_trans_engine/plugin/plugins/av_trans_input/dsoftbus_input_audio/
H A Ddsoftbus_input_audio_plugin.cpp254 cJSON *typeItem = cJSON_GetObjectItem(resMsg, AVT_DATA_META_TYPE.c_str()); in OnStreamReceived() local
255 if (typeItem == nullptr || !cJSON_IsNumber(typeItem)) { in OnStreamReceived()
259 uint32_t metaType = static_cast<uint32_t>(typeItem->valueint); in OnStreamReceived()
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/av_transport/av_trans_engine/plugin/plugins/av_trans_input/dsoftbus_input/
H A Ddsoftbus_input_plugin.cpp269 cJSON *typeItem = cJSON_GetObjectItem(resMsg, AVT_DATA_META_TYPE.c_str()); in OnStreamReceived() local
270 if (typeItem == NULL || !cJSON_IsNumber(typeItem)) { in OnStreamReceived()
274 uint32_t metaType = static_cast<uint32_t>(typeItem->valueint); in OnStreamReceived()
/ohos5.0/base/startup/appspawn/service/hnp/base/
H A Dhnp_json.c77 cJSON *typeItem = cJSON_GetObjectItem(json, "type"); in ParseJsonStreamToHnpCfgInfo() local
78 if ((typeItem == NULL) || (typeItem->valuestring == NULL)) { in ParseJsonStreamToHnpCfgInfo()
82 if (strcmp(typeItem->valuestring, "hnp-config") != 0) { in ParseJsonStreamToHnpCfgInfo()
83 HNP_LOGE("type info not match.type=%{public}s", typeItem->valuestring); in ParseJsonStreamToHnpCfgInfo()
/ohos5.0/base/sensors/miscdevice/utils/haptic_decoder/oh_json/src/
H A Ddefault_vibrator_decoder.cpp169 cJSON *typeItem = parser.GetObjectItem(eventItem, "Type"); in ParseEvent() local
170 CHKPR(typeItem, ERROR); in ParseEvent()
171 std::string curType = parser.GetStringValue(typeItem); in ParseEvent()
/ohos5.0/base/startup/init/services/init/
H A Dinit_service_manager.c409 cJSON *typeItem = NULL; in ParseSocketOption() local
413 typeItem = cJSON_GetArrayItem(typeArray, i); in ParseSocketOption()
414 INIT_CHECK_RETURN_VALUE(cJSON_IsString(typeItem), SERVICE_FAILURE); in ParseSocketOption()
415 stringValue = cJSON_GetStringValue(typeItem); in ParseSocketOption()