HomeSort by relevance Sort by last modified time
    Searched full:source_material (Results 1 - 14 of 14) sorted by null

  /external/autotest/server/
installable_object.py 15 source_material= None variable in class:InstallableObject
27 is saved in the source_material attribute.
34 self.source_material= utils.get(location)
deb_kernel_unittest.py 26 self.kernel.source_material = "source.rpm"
27 basename = os.path.basename(self.kernel.source_material)
31 self.host.send_file.expect_call(self.kernel.source_material,
45 utils.sh_escape(self.kernel.source_material)).and_return(result)
47 utils.sh_escape(self.kernel.source_material)).and_return(result)
51 utils.sh_escape(self.kernel.source_material)).and_return(result)
53 utils.sh_escape(self.kernel.source_material)).and_return(result)
rpm_kernel.py 54 if self.source_material is None:
57 rpm = self.source_material
94 if self.source_material is None:
99 % utils.sh_escape(self.source_material))
114 if self.source_material is None:
119 % self.source_material).stdout.strip()
136 if self.source_material is None:
141 % self.source_material).stdout.strip()
157 if self.source_material is None:
162 % self.source_material, ignore_status=True
    [all...]
deb_kernel.py 44 if self.source_material is None:
49 basename = os.path.basename(self.source_material)
51 host.send_file(self.source_material, remote_filename)
72 if self.source_material is None:
77 utils.sh_escape(self.source_material),)
107 if self.source_material is None:
132 if self.source_material is None:
137 basename = os.path.basename(self.source_material)
139 host.send_file(self.source_material, remote_filename)
base_utils.py 138 def unarchive(host, source_material):
141 If the "source_material" is compresses (according to the file
143 are gzip and bzip2. Afterwards, if the source_material is a tar
148 source_material: the path of the archive on the host
159 if (source_material.endswith(".gz") or
160 source_material.endswith(".gzip")):
161 host.run('gunzip "%s"' % (utils.sh_escape(source_material)))
162 source_material= ".".join(source_material.split(".")[:-1])
163 elif source_material.endswith("bz2")
    [all...]
git.py 43 logging.info('Pushing code dir %s to host %s', self.source_material,
45 host.send_file(self.source_material, self._build)
70 self.source_material = self.repodir
git_kernel.py 103 logging.info('Pushing %s to host', self.source_material)
104 host.send_file(self.source_material, self._build)
106 os.path.basename(self.source_material))
rpm_kernel_unittest.py 16 self.kernel.source_material = "source.rpm"
29 rpm = self.kernel.source_material
autotest_unittest.py 99 '../client')).and_return('source_material')
125 self.host.send_file.expect_call('source_material', 'autodir',
kvm.py 205 self.host.send_file(self.source_material, self.build_dir)
207 os.path.basename(self.source_material))
autotest.py 204 light_files = [os.path.join(self.source_material, f)
205 for f in os.listdir(self.source_material)
274 if self.source_material:
282 host.send_file(self.source_material, autodir, delete_dest=True)
284 self.source_material)
    [all...]
site_autotest.py 143 if self.installed and self.source_material:
  /external/autotest/client/common_lib/
revision_control.py 322 self.source_material = self.repodir
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state.c 838 * I believe this is not nessary when using source_material. This condition thus
962 /* Default to SOURCE_MATERIAL:
    [all...]

Completed in 548 milliseconds