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
143 CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH
146 cache_conditions.append(CacheConditions.RUN_SUCCEEDED)
148 cache_conditions.append(CacheConditions.FALSE)
150 cache_conditions.append(CacheConditions.SAME_MACHINE_MATCH)
152 cache_conditions.append(CacheConditions.MACHINES_MATCH)
Dresults_cache.py543 class CacheConditions(object): class
667 if read and CacheConditions.MACHINES_MATCH not in self.cache_conditions:
671 if read and CacheConditions.CHECKSUMS_MATCH not in self.cache_conditions:
680 if read and CacheConditions.IMAGE_PATH_MATCH not in self.cache_conditions:
686 if read and CacheConditions.SAME_MACHINE_MATCH not in self.cache_conditions:
705 if CacheConditions.FALSE in self.cache_conditions:
727 CacheConditions.RUN_SUCCEEDED not in self.cache_conditions):
Dresults_cache_unittest.py20 from results_cache import CacheConditions
968 [CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH],
1084 self.results_cache.cache_conditions.append(CacheConditions.IMAGE_PATH_MATCH)
1117 CacheConditions.CACHE_FILE_EXISTS, CacheConditions.CHECKSUMS_MATCH
1119 self.results_cache.cache_conditions.append(CacheConditions.FALSE)
1168 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
171 if CacheConditions.FALSE in experiment.cache_conditions: