Lines Matching refs:jsquery
384 cJSON *jsquery = NULL; in cJSON_Path() local
404 jsquery = jsroot; in cJSON_Path()
406 jsquery = cJSON_GetObjectItem(jsquery, node->path); in cJSON_Path()
407 if (jsquery == NULL) { in cJSON_Path()
412 if (cJSON_IsArray(jsquery)) { in cJSON_Path()
415 int arr_size = cJSON_GetArraySize(jsquery); in cJSON_Path()
418 cJSON *obj = cJSON_GetArrayItem(jsquery, i); in cJSON_Path()
426 jsquery = obj; in cJSON_Path()
434 jsquery = NULL; in cJSON_Path()
438 jsquery = cJSON_GetArrayItem(jsquery, atoi(node->query)); in cJSON_Path()
444 return jsquery; in cJSON_Path()