Lines Matching refs:module
39 nllookup(mod_info_t *module, Address address, Address *nxtsym_val)
41 size_t low = 0, middle, high = module->nfuncs - 1;
42 nltype *nl = module->nl;
52 keyval = module->txt_origin + (address - module->load_base);
56 *nxtsym_val = module->load_base +
57 (nl[low].value - module->txt_origin);
64 *nxtsym_val = module->load_end;
74 *nxtsym_val = module->load_base +
75 (nl[middle + 1].value - module->txt_origin);
92 * Look up a module's base address in a sorted list of pc-hits. Unlike
94 * pc-hit. This is so that we get into the module's first pc-hit rightaway,
95 * even if the module's entry-point (load_base) itself is not a hit.