Home
last modified time | relevance | path

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

/external/toolchain-utils/crosperf/
Dexperiment_factory.py21 from results_cache import CacheConditions
184 CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH
187 cache_conditions.append(CacheConditions.RUN_SUCCEEDED)
189 cache_conditions.append(CacheConditions.FALSE)
191 cache_conditions.append(CacheConditions.SAME_MACHINE_MATCH)
193 cache_conditions.append(CacheConditions.MACHINES_MATCH)
Dbenchmark_run_unittest.py27 from results_cache import CacheConditions
67 CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH
Dresults_cache.py1211 class CacheConditions(object): class
1337 if read and CacheConditions.MACHINES_MATCH not in self.cache_conditions:
1341 if read and CacheConditions.CHECKSUMS_MATCH not in self.cache_conditions:
1351 if read and CacheConditions.IMAGE_PATH_MATCH not in self.cache_conditions:
1358 if read and CacheConditions.SAME_MACHINE_MATCH not in self.cache_conditions:
1377 if CacheConditions.FALSE in self.cache_conditions:
1399 CacheConditions.RUN_SUCCEEDED not in self.cache_conditions):
Dresults_cache_unittest.py23 from results_cache import CacheConditions
1917 [CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH],
2038 self.results_cache.cache_conditions.append(CacheConditions.IMAGE_PATH_MATCH)
2071 CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH
2073 self.results_cache.cache_conditions.append(CacheConditions.FALSE)
2122 self.results_cache.cache_conditions.append(CacheConditions.RUN_SUCCEEDED)
Dexperiment_runner.py24 from results_cache import CacheConditions
187 if CacheConditions.FALSE in experiment.cache_conditions: