Lines Matching defs:sym
25 struct kernel_sym *sym;
45 sym = &dd->sym_mapping[dd->sym_count];
46 if (sscanf(buff, "%p %*c %s", &address, sym->name) != 2)
48 sym->address = (unsigned long)address;
49 if (!strcmp(sym->name, "__bpf_call_base")) {
50 dd->address_call_base = sym->address;
52 if (!sym->address)
55 if (sym->address)
73 struct kernel_sym sym = {
78 bsearch(&sym, dd->sym_mapping, dd->sym_count,
139 struct kernel_sym *sym,
147 else if (sym)
149 "%+d#%s", insn->off, sym->name);
157 struct kernel_sym *sym,
160 if (sym)
162 "%s", sym->name);
174 struct kernel_sym *sym;
180 sym = kernel_syms_search(dd, address);
182 return print_call_pcrel(dd, sym, address, insn);
184 return print_call_helper(dd, sym, address);