Lines Matching refs:sym_name
2223 static int sym_not_found_error(const char *sym_name, int idx)
2227 idx, sym_name);
2229 pr_err("Global symbol '%s' not found.\n", sym_name);
2231 pr_err("Symbol '%s' not found.\n", sym_name);
2238 static int find_kern_sym(const char *sym_name, u64 *start, u64 *size, int idx)
2241 .name = sym_name,
2258 pr_err("Multiple kernel symbols with name '%s'\n", sym_name);
2262 sym_name);
2269 return sym_not_found_error(sym_name, idx);
2410 static void print_duplicate_syms(struct dso *dso, const char *sym_name)
2416 pr_err("Multiple symbols with name '%s'\n", sym_name);
2420 if (dso_sym_match(sym, sym_name, &cnt, -1)) {
2435 sym_name);
2439 static int find_dso_sym(struct dso *dso, const char *sym_name, u64 *start,
2456 } else if (dso_sym_match(sym, sym_name, &cnt, idx)) {
2457 print_duplicate_syms(dso, sym_name);
2460 } else if (dso_sym_match(sym, sym_name, &cnt, idx)) {
2468 return sym_not_found_error(sym_name, idx);