Lines Matching refs:entry
37 struct erratum_entry *entry, *end; in find_erratum_entry() local
42 entry = cpu_ops->errata_list_start; in find_erratum_entry()
43 assert(entry != NULL); in find_erratum_entry()
50 while ((entry <= end)) { in find_erratum_entry()
51 if (entry->id == errata_id) { in find_erratum_entry()
52 return entry; in find_erratum_entry()
54 entry += 1; in find_erratum_entry()
208 struct erratum_entry *entry; in check_erratum_applies() local
213 entry = find_erratum_entry(errata_id); in check_erratum_applies()
215 if (entry == NULL) { in check_erratum_applies()
219 assert(entry->cve == cve); in check_erratum_applies()
221 return entry->check_func(rev_var); in check_erratum_applies()