Lines Matching refs:next
83 cJSON *next;
85 next = c->next;
90 c = next;
620 child->next = new_item;
642 while (child) numentries++, child = child->next;
664 if (child->next) {
673 child = child->next;
694 child = child->next;
767 child->next = new_item;
796 while (child) numentries++, child = child->next;
846 len = (fmt ? 1 : 0) + (child->next ? 1 : 0);
849 if (child->next) *ptr++ = ',';
853 child = child->next;
885 child = child->next;
940 while (c) i++, c = c->next;
945 while (c && item > 0) item--, c = c->next;
950 while (c && strcmp(c->string, string)) c = c->next;