Lines Matching defs:sym_name
2460 static int sym_not_found_error(const char *sym_name, int idx)
2464 idx, sym_name);
2466 pr_err("Global symbol '%s' not found.\n", sym_name);
2468 pr_err("Symbol '%s' not found.\n", sym_name);
2475 static int find_kern_sym(const char *sym_name, u64 *start, u64 *size, int idx)
2478 .name = sym_name,
2495 pr_err("Multiple kernel symbols with name '%s'\n", sym_name);
2499 sym_name);
2506 return sym_not_found_error(sym_name, idx);
2647 static void print_duplicate_syms(struct dso *dso, const char *sym_name)
2653 pr_err("Multiple symbols with name '%s'\n", sym_name);
2657 if (dso_sym_match(sym, sym_name, &cnt, -1)) {
2672 sym_name);
2676 static int find_dso_sym(struct dso *dso, const char *sym_name, u64 *start,
2693 } else if (dso_sym_match(sym, sym_name, &cnt, idx)) {
2694 print_duplicate_syms(dso, sym_name);
2697 } else if (dso_sym_match(sym, sym_name, &cnt, idx)) {
2705 return sym_not_found_error(sym_name, idx);