Home
last modified time | relevance | path

Searched refs:source_material (Results 1 – 4 of 4) sorted by relevance

/external/autotest/server/
Dbase_utils.py144 def unarchive(host, source_material): argument
165 if (source_material.endswith(".gz") or
166 source_material.endswith(".gzip")):
167 host.run('gunzip "%s"' % (utils.sh_escape(source_material)))
168 source_material= ".".join(source_material.split(".")[:-1])
169 elif source_material.endswith("bz2"):
170 host.run('bunzip2 "%s"' % (utils.sh_escape(source_material)))
171 source_material= ".".join(source_material.split(".")[:-1])
174 if source_material.endswith(".tar"):
176 utils.sh_escape(os.path.dirname(source_material)),
[all …]
Dinstallable_object.py15 source_material= None variable in InstallableObject
34 self.source_material= utils.get(location)
Dautotest.py311 light_files = [os.path.join(self.source_material, f)
312 for f in os.listdir(self.source_material)
381 if self.source_material:
389 host.send_file(self.source_material, autodir, delete_dest=True)
391 self.source_material)
411 if self.installed and self.source_material:
/external/autotest/client/common_lib/
Drevision_control.py388 self.source_material = self.repodir