Lines Matching refs:second
487 cJSON *second = list;
514 second = second->next;
522 if ((second != NULL) && (second->prev != NULL))
525 second->prev->next = NULL;
526 second->prev = NULL;
531 second = sort_list(second, case_sensitive);
535 while ((first != NULL) && (second != NULL))
538 if (compare_strings((unsigned char*)first->string, (unsigned char*)second->string, case_sensitive) < 0)
544 smaller = second;
567 second = second->next;
581 if (second != NULL)
583 /* Append rest of second list */
586 return second;
588 result_tail->next = second;
589 second->prev = result_tail;