Home
last modified time | relevance | path

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

/external/toolchain-utils/crosperf/
Dexperiment_factory.py16 from results_cache import CacheConditions
146 CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH
149 cache_conditions.append(CacheConditions.RUN_SUCCEEDED)
151 cache_conditions.append(CacheConditions.FALSE)
153 cache_conditions.append(CacheConditions.SAME_MACHINE_MATCH)
155 cache_conditions.append(CacheConditions.MACHINES_MATCH)
Dresults_cache.py545 class CacheConditions(object): class
669 if read and CacheConditions.MACHINES_MATCH not in self.cache_conditions:
673 if read and CacheConditions.CHECKSUMS_MATCH not in self.cache_conditions:
682 if read and CacheConditions.IMAGE_PATH_MATCH not in self.cache_conditions:
688 if read and CacheConditions.SAME_MACHINE_MATCH not in self.cache_conditions:
707 if CacheConditions.FALSE in self.cache_conditions:
729 CacheConditions.RUN_SUCCEEDED not in self.cache_conditions):
Dresults_cache_unittest.py20 from results_cache import CacheConditions
967 [CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH],
1087 self.results_cache.cache_conditions.append(CacheConditions.IMAGE_PATH_MATCH)
1120 CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH
1122 self.results_cache.cache_conditions.append(CacheConditions.FALSE)
1171 self.results_cache.cache_conditions.append(CacheConditions.RUN_SUCCEEDED)
Dbenchmark_run_unittest.py26 from results_cache import CacheConditions
63 CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH
Dexperiment_runner.py22 from results_cache import CacheConditions
169 if CacheConditions.FALSE in experiment.cache_conditions: