Lines Matching defs:list
64 command_register (Command** list, Command* cmd)
68 for (i = 0; list [i]; i++);
70 list [i] = cmd;
71 list [i + 1] = (Command*) NULL;
75 command_get (Command** list, char* name)
84 for (i=0; list [i]; i++) {
85 switch (str_list_match_any (list [i]->names, name)) {
87 return list [i];
104 return list [partial_match];
108 command_get_names (Command** list)
113 for (walk = list; *walk; walk++)