Lines Matching refs:paramValue
276 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, key.c_str());
277 if (paramValue == nullptr) {
278 DHLOGE("paramValue is null");
282 if (cJSON_IsString(paramValue)) {
294 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, key.c_str());
295 if (paramValue == nullptr) {
296 DHLOGE("paramValue is null");
300 if (cJSON_IsNumber(paramValue)) {
301 int value = paramValue->valueint;
315 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, key.c_str());
316 if (paramValue == nullptr || !cJSON_IsObject(paramValue)) {
317 DHLOGE("paramValue is null or is not object");
321 return CJsonParamCheck(paramValue,
333 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, (*it).c_str());
334 if (paramValue == nullptr) {