HomeSort by relevance Sort by last modified time
    Searched refs:file_hash (Results 1 - 8 of 8) sorted by null

  /external/fio/
filehash.c 14 static struct flist_head *file_hash; variable in typeref:struct:flist_head
49 struct flist_head *bucket = &file_hash[hash(name)];
91 flist_add_tail(&f->hash_list, &file_hash[hash(f->file_name)]);
104 has_entries += !flist_empty(&file_hash[i]);
110 file_hash = NULL;
119 file_hash = ptr;
121 INIT_FLIST_HEAD(&file_hash[i]);
  /external/chromium-trace/catapult/telemetry/
cloud_storage 57 file_hash = cloud_storage.ReadHash(hash_path)
60 if bucket in bucket_contents and file_hash in bucket_contents[bucket]:
138 file_hash = cloud_storage.ReadHash(file_path + '.sha1')
139 cloud_storage.Move(buckets.pop(), args.bucket, file_hash)
143 cloud_storage.Delete(bucket, file_hash)
156 file_hash = cloud_storage.ReadHash(file_path + '.sha1')
158 cloud_storage.Delete(bucket, file_hash)
179 file_hash = cloud_storage.CalculateHash(file_path)
184 f.write(file_hash)
188 cloud_storage.Insert(args.bucket, file_hash, file_path
    [all...]
  /build/make/tools/
generate-notice-files.py 76 def combine_notice_files_html(file_hash, input_dir, output_filename):
77 """Combine notice files in FILE_HASH and output a HTML version to OUTPUT_FILENAME."""
85 for value in file_hash:
102 sorted_filenames = sorted(itertools.chain.from_iterable(file_hash))
113 for value in file_hash:
134 def combine_notice_files_text(file_hash, input_dir, output_filename, file_title):
135 """Combine notice files in FILE_HASH and output a text version to OUTPUT_FILENAME."""
140 for value in file_hash:
150 """Combine notice files in FILE_HASH and output a XML version to OUTPUT_FILENAME."""
  /external/vixl/tools/
lint.py 118 file_hash = hashlib.md5(f.read()).hexdigest()
119 return file_hash != cached_results[filename]
124 # { 'filename': file_hash, 'other_filename': other_hash, ... }
177 file_hash = hashlib.md5(f.read()).hexdigest()
178 cached_results[filename] = file_hash
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
cloud_storage_info_unittest.py 132 def _GetIfHashChangedMock(cs_path, download_path, bucket, file_hash):
133 del cs_path, bucket, file_hash
156 def _GetIfHashChangedMock(cs_path, download_path, bucket, file_hash):
157 del cs_path, bucket, file_hash
  /external/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage.py 383 def GetIfHashChanged(cs_path, download_path, bucket, file_hash):
385 it's hash doesn't match |file_hash|.
396 CalculateHash(download_path) == file_hash):
  /system/update_engine/payload_generator/
payload_signer.cc 540 brillo::Blob file_hash, metadata_hash; local
542 HashCalculator::RawHashOfFile(payload_path, file_size, &file_hash) ==
548 brillo::data_encoding::Base64Encode(file_hash));
  /external/autotest/client/bin/
base_utils.py 136 file_hash = None
138 while not file_hash == expected_hash:
140 file_hash = hash_file(file_local_path, method)
141 if file_hash == expected_hash:

Completed in 552 milliseconds