Home | History | Annotate | Download | only in syslinux

Lines Matching refs:entry

16     struct debug_func_entry *e, *entry = NULL;
20 entry = e;
25 return entry;
30 struct debug_func_entry *entry;
32 entry = lookup_entry(func);
33 if (entry)
41 struct debug_func_entry *entry;
43 entry = lookup_entry(func);
44 if (entry)
47 entry = malloc(sizeof(*entry));
48 if (!entry)
51 entry->name = func;
52 list_add(&entry->list, &debug_funcs);
58 struct debug_func_entry *entry;
60 entry = lookup_entry(func);
61 if (!entry)
64 list_del(&entry->list);
65 free(entry);