Lines Matching refs:paramValue
276 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, key.c_str()); in IsString() local
277 if (paramValue == nullptr) { in IsString()
282 if (cJSON_IsString(paramValue)) { in IsString()
294 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, key.c_str()); in IsInt32() local
295 if (paramValue == nullptr) { in IsInt32()
300 if (cJSON_IsNumber(paramValue)) { in IsInt32()
301 int value = paramValue->valueint; in IsInt32()
315 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, key.c_str()); in IsAudioParam() local
316 if (paramValue == nullptr || !cJSON_IsObject(paramValue)) { in IsAudioParam()
321 return CJsonParamCheck(paramValue, in IsAudioParam()
333 cJSON *paramValue = cJSON_GetObjectItemCaseSensitive(jsonObj, (*it).c_str()); in CJsonParamCheck() local
334 if (paramValue == nullptr) { in CJsonParamCheck()