Lines Matching defs:address
1 /* Manage address space lookup table for libdwfl.
131 lookup (Dwfl *dwfl, GElf_Addr address, int hint)
134 && address >= dwfl->lookup_addr[hint]
136 || address < dwfl->lookup_addr[hint + 1]))
139 /* Do binary search on the array indexed by module load address. */
144 if (address < dwfl->lookup_addr[idx])
149 if (l == dwfl->lookup_elts || address < dwfl->lookup_addr[l])
245 dwfl_addrsegment (Dwfl *dwfl, Dwarf_Addr address, Dwfl_Module **mod)
258 int idx = lookup (dwfl, address, -1);
267 /* If this segment does not have a module, but the address is
269 if (*mod == NULL && idx > 0 && dwfl->lookup_addr[idx] == address)
272 if (*mod != NULL && (*mod)->high_addr != address)