HomeSort by relevance Sort by last modified time
    Searched refs:c_list (Results 1 - 2 of 2) sorted by null

  /external/toybox/toys/pending/
fsck.c 62 static struct child_list *c_list = NULL; //fsck.type child list. variable in typeref:struct:child_list
68 for (child = c_list; child; child = child->next)
239 if (c_list) {
240 child->next = c_list;
241 c_list = child;
243 c_list = child;
257 if (!c_list) return 0;
259 temp = c_list;
289 if (prev == temp) c_list = c_list->next; //first node
    [all...]
  /external/mksh/src/
syn.c 45 static struct op *c_list(bool);
91 outtree = c_list(source->type == SSTRING);
138 c_list(bool multi) function
239 t = c_list(true);
439 t->left = c_list(true);
456 t->left = c_list(true);
535 list = c_list(true);
547 t->left = c_list(true);
561 if ((t = c_list(true)) == NULL)
567 t->left = c_list(true)
    [all...]

Completed in 1277 milliseconds