Lines Matching defs:syms
415 bool (*fn)(const struct symsearch *syms,
464 { mod->syms, mod->syms + mod->num_syms, mod->crcs,
507 static bool check_exported_symbol(const struct symsearch *syms,
514 if (syms->license == GPL_ONLY)
516 if (syms->license == WILL_BE_GPL_ONLY && fsa->warn) {
524 if (syms->unused && fsa->warn) {
536 fsa->crc = symversion(syms->crcs, symnum);
537 fsa->sym = &syms->start[symnum];
538 fsa->license = syms->license;
576 static bool find_exported_symbol_in_section(const struct symsearch *syms,
583 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start,
586 if (sym != NULL && check_exported_symbol(syms, owner,
587 sym - syms->start, data))
2323 { mod->syms, mod->num_syms },
2683 ks = lookup_exported_symbol(name, mod->syms, mod->syms + mod->num_syms);
3316 mod->syms = section_objs(info, "__ksymtab",
3317 sizeof(*mod->syms), &mod->num_syms);
4069 /* Fix up syms, so that st_value is a pointer to location. */