Home
last modified time | relevance | path

Searched refs:updater (Results 1 – 5 of 5) sorted by relevance

/tools/external_updater/
Dexternal_updater.py83 updater = updater_utils.create_updater(metadata, proj_path, UPDATERS)
84 return (updater, metadata)
87 def _do_update(args: argparse.Namespace, updater: Updater,
89 full_path = updater.project_path
100 updater.update()
104 updated_metadata.third_party.version = updater.latest_version
106 if metadata_url == updater.current_url:
107 metadata_url.CopyFrom(updater.latest_url)
112 msg = 'Upgrade {} to {}\n'.format(args.path, updater.latest_version)
137 updater, metadata = build_updater(proj_path)
[all …]
DREADME.md3 external updater is a tool to automatically updates libraries in external/ .
10 tools/external_updater/updater.sh check ${LIBNAME}
16 tools/external_updater/updater.sh check --all
22 tools/external_updater/updater.sh update ${LIBNAME}
130 --history ~/updater/history \
Dupdater_utils.py43 updater = updater_cls(proj_path, url, metadata.third_party.version)
44 if updater.is_supported_url():
45 return updater
Dmetadata.proto17 // This proto will only contain fields and values the updater cares about.
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DCdmaDeviceFlasher.java144 ZipFile updater = new ZipFile(deviceBuild.getDeviceImageFile().getAbsolutePath()); in extractSystemZip() local
145 ZipUtil2.extractZip(updater, updateDir); in extractSystemZip()