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

  /external/chromium-trace/catapult/telemetry/
cloud_storage 28 hash_path = path
31 hash_path = path + '.sha1'
32 return file_path, hash_path
48 file_path, hash_path = _GetPaths(path)
53 if not os.path.exists(hash_path):
57 file_hash = cloud_storage.ReadHash(hash_path)
182 hash_path = file_path + '.sha1'
183 with open(hash_path, 'wb') as f:
191 subprocess.call(['git', 'add', hash_path])
  /external/skia/bin/
sync-and-gyp 44 hash_path = os.path.join(skia_out, 'gyp_hash') variable
46 hash_path = os.path.join('out', 'gyp_hash') variable
143 if cat_if_exists(hash_path).strip() != gyp_hash:
148 with open(hash_path, 'w') as o:
  /external/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage.py 345 hash_path = file_path + '.sha1'
346 if not os.path.exists(hash_path):
347 logging.warning('Hash file not found: %s', hash_path)
350 expected_hash = ReadHash(hash_path)
390 def ReadHash(hash_path):
391 with open(hash_path, 'rb') as f:
cloud_storage_unittest.py 152 hash_path = file_path + '.sha1'
155 # hash_path doesn't exist.
158 # hash_path exists, but file_path doesn't.
159 self.CreateFiles([hash_path])
162 # hash_path and file_path exist, and have same hash.
166 # hash_path and file_path exist, and have different hashes.
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
system_stub.py 262 def ReadHash(self, hash_path):
263 return self.local_hash_files[hash_path]
  /external/autotest/client/virt/
virt_utils.py     [all...]

Completed in 318 milliseconds