Lines Matching refs:sym_name
2393 static int sym_not_found_error(const char *sym_name, int idx)
2397 idx, sym_name);
2399 pr_err("Global symbol '%s' not found.\n", sym_name);
2401 pr_err("Symbol '%s' not found.\n", sym_name);
2408 static int find_kern_sym(const char *sym_name, u64 *start, u64 *size, int idx)
2411 .name = sym_name,
2428 pr_err("Multiple kernel symbols with name '%s'\n", sym_name);
2432 sym_name);
2439 return sym_not_found_error(sym_name, idx);
2580 static void print_duplicate_syms(struct dso *dso, const char *sym_name)
2586 pr_err("Multiple symbols with name '%s'\n", sym_name);
2590 if (dso_sym_match(sym, sym_name, &cnt, -1)) {
2605 sym_name);
2609 static int find_dso_sym(struct dso *dso, const char *sym_name, u64 *start,
2626 } else if (dso_sym_match(sym, sym_name, &cnt, idx)) {
2627 print_duplicate_syms(dso, sym_name);
2630 } else if (dso_sym_match(sym, sym_name, &cnt, idx)) {
2638 return sym_not_found_error(sym_name, idx);