Searched refs:data_hash (Results 1 – 3 of 3) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | cache.py | 33 def getCacheFile(path, filename, mc, data_hash): argument 37 return os.path.join(path, filename + mcspec + "." + data_hash) 390 def __init__(self, databuilder, mc, data_hash, caches_array): argument 406 self.data_hash = data_hash 413 return getCacheFile(self.cachedir, cachefile, self.mc, self.data_hash) 726 def __init__(self, databuilder, data_hash, caches_array): argument 753 self.__caches[mc] = Cache(databuilder, mc, data_hash, caches_array)
|
H A D | cookerdata.py | 259 data_hash = hashlib.sha256() 260 data_hash.update(self.data.get_hash().encode('utf-8')) 263 data_hash.update(self.mcdata[config].get_hash().encode('utf-8')) 264 self.data_hash = data_hash.hexdigest()
|
H A D | cooker.py | 1339 …bb_caches = bb.cache.MulticonfigCache(self.databuilder, self.databuilder.data_hash, self.caches_ar… 2112 self.cfghash = cooker.databuilder.data_hash
|