Lines Matching refs:afptr
361 static int libnamencmp (const char *libname, const autofilter_entry_type *afptr) in libnamencmp() argument
363 if (filename_ncmp (libname, afptr->name, afptr->len)) in libnamencmp()
366 libname += afptr->len; in libnamencmp()
559 const autofilter_entry_type *afptr; in auto_export() local
586 afptr = autofilter_liblist; in auto_export()
588 while (afptr->name) in auto_export()
590 if (libnamencmp (libname, afptr) == 0 ) in auto_export()
592 afptr++; in auto_export()
600 afptr = autofilter_objlist; in auto_export()
601 while (afptr->name) in auto_export()
603 if (strcmp (p, afptr->name) == 0) in auto_export()
605 afptr++; in auto_export()
613 afptr = pe_details->autofilter_symbollist; in auto_export()
615 while (afptr->name) in auto_export()
617 if (strcmp (n, afptr->name) == 0) in auto_export()
620 afptr++; in auto_export()
624 afptr = autofilter_symbolprefixlist; in auto_export()
625 while (afptr->name) in auto_export()
627 if (strncmp (n, afptr->name, afptr->len) == 0) in auto_export()
630 afptr++; in auto_export()
635 afptr = autofilter_symbolsuffixlist; in auto_export()
636 while (afptr->name) in auto_export()
638 if ((len >= afptr->len) in auto_export()
640 && strncmp (n + len - afptr->len, afptr->name, in auto_export()
641 afptr->len + 1) == 0) in auto_export()
644 afptr++; in auto_export()