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

  /external/toybox/scripts/
install.c 13 // Populate toy_list[].
15 struct toy_list toy_list[] = { variable in typeref:struct:toy_list
19 #define TOY_LIST_LEN (sizeof(toy_list)/sizeof(struct toy_list))
28 int fl = toy_list[i].flags;
35 len += printf("%s\n",toy_list[i].name);
  /external/toybox/toys/other/
help.c 34 static void do_help(struct toy_list *t)
53 struct toy_list *t = toys.which;
64 xprintf("<a href=\"#%s\">%s</a>\n", toy_list[i].name,
65 toy_list[i].name);
71 do_help(toy_list+i);
  /external/toybox/
main.c 12 // Populate toy_list[].
20 struct toy_list toy_list[] = { variable in typeref:struct:toy_list
30 struct toy_list *toy_find(char *name)
39 if (!strncmp(name,"toybox",6)) return toy_list;
44 top = ARRAY_LEN(toy_list)-1;
50 result = strcmp(name,toy_list[middle].name);
51 if (!result) return toy_list+middle;
71 static void toy_singleinit(struct toy_list *which, char *argv[])
79 if (CFG_TOYBOX && toys.which == toy_list && toys.argv[2]
    [all...]
toys.h 83 struct toy_list *toy_find(char *name);
84 void toy_init(struct toy_list *which, char *argv[]);
111 extern struct toy_list { struct
116 } toy_list[];
121 struct toy_list *which; // Which entry in toy_list is this one?
  /external/toybox/lib/
help.c 20 int i = toys.which-toy_list;
33 i = toy_find(++s)-toy_list;
  /external/toybox/toys/pending/
sh.c 282 struct toy_list *tl;

Completed in 4842 milliseconds