Lines Matching refs:fsa
500 struct find_symbol_arg *fsa = data; in check_exported_symbol() local
502 if (!fsa->gplok) { in check_exported_symbol()
505 if (syms->licence == WILL_BE_GPL_ONLY && fsa->warn) { in check_exported_symbol()
508 fsa->name); in check_exported_symbol()
513 if (syms->unused && fsa->warn) { in check_exported_symbol()
515 "using it.\n", fsa->name); in check_exported_symbol()
524 fsa->owner = owner; in check_exported_symbol()
525 fsa->crc = symversion(syms->crcs, symnum); in check_exported_symbol()
526 fsa->sym = &syms->start[symnum]; in check_exported_symbol()
568 struct find_symbol_arg *fsa = data; in find_exported_symbol_in_section() local
571 sym = bsearch(fsa->name, syms->start, syms->stop - syms->start, in find_exported_symbol_in_section()
589 struct find_symbol_arg fsa; in find_symbol() local
591 fsa.name = name; in find_symbol()
592 fsa.gplok = gplok; in find_symbol()
593 fsa.warn = warn; in find_symbol()
595 if (each_symbol_section(find_exported_symbol_in_section, &fsa)) { in find_symbol()
597 *owner = fsa.owner; in find_symbol()
599 *crc = fsa.crc; in find_symbol()
600 return fsa.sym; in find_symbol()