Lines Matching refs:source_package
220 OPTIONS_MANAGER.source_package = args.source_package
236 [OPTIONS_MANAGER.source_package,
275 def get_source_package_path(source_package): argument
281 if os.path.isdir(source_package):
282 OPTIONS_MANAGER.source_package_dir = source_package
283 elif source_package.endswith('.zip'):
285 tmp_dir_obj, unzip_dir = unzip_package(source_package)
293 "path: %s" % source_package, UPDATE_LOGGER.ERROR_LOG)
299 def check_incremental_args(no_zip, partition_file, source_package, argument
314 if source_package is None:
329 if not get_source_package_path(source_package):
715 def incremental_processing(no_zip, partition_file, source_package, argument
726 if check_incremental_args(no_zip, partition_file, source_package,
736 if source_package is not None:
744 def check_args(private_key, source_package, target_package, update_package): argument
753 if source_package is False or private_key is False or \
790 source_package, target_package, update_package, no_zip, not_l2, \
799 …if source_package is not None or OPTIONS_MANAGER.xml_path is not None or partition_file is not Non…
802 if check_args(private_key, source_package, target_package, update_package) is False:
828 if incremental_processing(no_zip, partition_file, source_package, verse_script) is False: