Lines Matching refs:target_package
221 OPTIONS_MANAGER.target_package = args.target_package
237 OPTIONS_MANAGER.target_package,
400 def check_target_package_path(target_package): argument
406 if os.path.isdir(target_package):
407 OPTIONS_MANAGER.target_package_dir = target_package
408 temp_dir_list = os.listdir(target_package)
411 os.path.join(target_package, UPDATER_CONFIG)
415 target_package, UPDATE_LOGGER.ERROR_LOG)
417 elif target_package.endswith('.zip'):
419 tmp_dir_obj, unzip_dir = unzip_package(target_package)
430 target_package, UPDATE_LOGGER.ERROR_LOG)
744 def check_args(private_key, source_package, target_package, update_package): argument
754 target_package is False or update_package is False:
758 if check_target_package_path(target_package) is False:
790 source_package, target_package, update_package, no_zip, not_l2, \
802 if check_args(private_key, source_package, target_package, update_package) is False: