Lines Matching defs:addr_offset_so
4497 static inline int sym_is_matched(const Sym* sym, size_t addr_offset_so) {
4500 (addr_offset_so >= sym->st_value) &&
4501 (addr_offset_so < sym->st_value + sym->st_size);
4504 static inline Sym* find_addr_by_elf(size_t addr_offset_so, struct dso *p) {
4508 if (sym_is_matched(sym, addr_offset_so)) {
4516 static inline Sym* find_addr_by_gnu(size_t addr_offset_so, struct dso *p) {
4533 if (sym_is_matched(sym, addr_offset_so)) {
4544 if (sym_is_matched(sym, addr_offset_so)) {
4570 size_t addr_offset_so = addr - (size_t)p->base;
4576 match_sym = find_addr_by_gnu(addr_offset_so, p);
4579 match_sym = find_addr_by_elf(addr_offset_so, p);