D | check_boot_jars.py | 39 def CheckDexJar(dexdump_path, allow_list_path, jar): argument 43 args='%s -l xml %s' % (dexdump_path, jar), 55 print('Error processing jar %s - %s' % (jar, e), file=sys.stderr) 72 % (jar, class_name, package_name, allow_list_path)), 76 print(('Error: %s does not contain any packages.' % jar), 92 for jar in argv[2:]: 93 if not CheckDexJar(dexdump_path, allow_list_path, jar):
|