Lines Matching defs:syms
363 static bool find_exported_symbol_in_section(const struct symsearch *syms,
370 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
375 sym_flags = *(syms->flagstab + (sym - syms->start));
380 fsa->crc = symversion(syms->crcs, sym - syms->start);
393 const struct symsearch syms = {
401 if (find_exported_symbol_in_section(&syms, NULL, fsa))
406 const struct symsearch syms = {
407 .start = mod->syms,
408 .stop = mod->syms + mod->num_syms,
416 if (find_exported_symbol_in_section(&syms, mod, fsa))
1498 for (s = mod->syms; s < mod->syms + mod->num_syms; s++) {
2380 Elf_Sym *syms = (void *)info->hdr + sym_shdr->sh_offset;
2400 for (i = 0; i < sym_shdr->sh_size / sizeof(*syms); i++) {
2401 if (syms[i].st_name >= str_shdr->sh_size) {
2674 mod->syms = section_objs(info, "__ksymtab",
2675 sizeof(*mod->syms), &mod->num_syms);
3521 /* Fix up syms, so that st_value is a pointer to location. */