Lines Matching refs:fsa
511 struct find_symbol_arg *fsa = data; in check_exported_symbol() local
513 if (!fsa->gplok) { in check_exported_symbol()
516 if (syms->license == WILL_BE_GPL_ONLY && fsa->warn) { in check_exported_symbol()
519 fsa->name); in check_exported_symbol()
524 if (syms->unused && fsa->warn) { in check_exported_symbol()
526 "using it.\n", fsa->name); in check_exported_symbol()
535 fsa->owner = owner; in check_exported_symbol()
536 fsa->crc = symversion(syms->crcs, symnum); in check_exported_symbol()
537 fsa->sym = &syms->start[symnum]; in check_exported_symbol()
538 fsa->license = syms->license; in check_exported_symbol()
580 struct find_symbol_arg *fsa = data; in find_exported_symbol_in_section() local
583 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start, in find_exported_symbol_in_section()
602 struct find_symbol_arg fsa; in find_symbol() local
604 fsa.name = name; in find_symbol()
605 fsa.gplok = gplok; in find_symbol()
606 fsa.warn = warn; in find_symbol()
608 if (each_symbol_section(find_exported_symbol_in_section, &fsa)) { in find_symbol()
610 *owner = fsa.owner; in find_symbol()
612 *crc = fsa.crc; in find_symbol()
614 *license = fsa.license; in find_symbol()
615 return fsa.sym; in find_symbol()