Home
last modified time | relevance | path

Searched refs:cache_key (Results 1 – 2 of 2) sorted by relevance

/tools/asuite/adevice/src/
Dfingerprint.rs61 pub cache_key: String, field
108 let (digest, cache_key) = get_or_compute_digest(file_path, metadata, cache)?; in from_file()
112 cache_key, in from_file()
180 cleared_left.cache_key = "".to_string(); in is_metadata_diff()
181 cleared_right.cache_key = "".to_string(); in is_metadata_diff()
262 let cache_key = cache.cache_key(file_path, metadata)?; in get_or_compute_digest() localVariable
264 if let Some(cached_digest) = cache.get(&cache_key) { in get_or_compute_digest()
269 Ok((digest, cache_key)) in get_or_compute_digest()
288 pub fn cache_key(&self, file_path: &Path, metadata: &fs::Metadata) -> Result<String> { in cache_key() method
324 if !meta.cache_key.is_empty() { in write_to_file()
[all …]
/tools/asuite/atest/integration_tests/
Dsnapshot.py253 cache_key = path.as_posix() + str(timestamp)
254 if cache_key in self.cache:
255 return self.cache[cache_key]
262 self.cache[cache_key] = content_hash