Lines Matching refs:library
15 """Ensures that all externally visible functions in the library have an appropriate name
50 def check_library(library):
51 """Scans the given library file for global exports. If all such
82 for line in command_output(['objdump', '-t', library], '.').split('\n'):
102 parser = argparse.ArgumentParser(description='Check global names exported from a library')
103 parser.add_argument('library', help='The static library to examine')
106 if not os.path.isfile(args.library):
107 print('{}: error: {} does not exist'.format(PROG, args.library))
111 status = check_library(args.library)