Lines Matching defs:list
16 struct mech_module_list *list;
19 list = i_new(struct mech_module_list, 1);
20 list->module = *module;
22 list->next = mech_modules;
23 mech_modules = list;
28 struct mech_module_list **pos, *list;
32 list = *pos;
34 i_free(list);
42 struct mech_module_list *list;
45 for (list = mech_modules; list != NULL; list = list->next) {
46 if (strcmp(list->module.mech_name, name) == 0)
47 return &list->module;
94 struct mech_module_list *list;
96 list = p_new(reg->pool, struct mech_module_list, 1);
97 list->module = *mech;
116 list->next = reg->modules;
117 reg->modules = list;
185 const struct mech_module_list *list;
188 for (list = reg->modules; list != NULL; list = list->next) {
189 if (strcmp(list->module.mech_name, name) == 0)
190 return &list->module;