Searched refs:cachefile (Results 1 – 5 of 5) sorted by relevance
| /openbmc/openbmc/poky/bitbake/lib/bb/ |
| H A D | cache.py | 83 cachefile = "bb_cache.dat" variable in CoreRecipeInfo 246 cachefile = "bb_cache_" + classname +".dat" variable in SiggenRecipeInfo 412 def getCacheFile(self, cachefile): argument 413 return getCacheFile(self.cachedir, cachefile, self.mc, self.data_hash) 418 self.cachefile = self.getCacheFile("bb_cache.dat") 426 cachefile = self.getCacheFile(cache_class.cachefile) 427 cache_exists = os.path.exists(cachefile) 428 self.logger.debug2("Checking if %s exists: %r", cachefile, cache_exists) 433 elif os.path.isfile(self.cachefile): 436 self.logger.debug("Cache file %s not found, building..." % self.cachefile) [all …]
|
| H A D | cache_extra.py | 24 cachefile = "bb_extracache_" + classname +".dat" variable in HobRecipeInfo
|
| /openbmc/openbmc/poky/bitbake/contrib/ |
| H A D | dump_cache.py | 48 with open(self.args.cachefile[0], "rb") as cachefile: 49 pickled = pickle.Unpickler(cachefile)
|
| /openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-filesystems/zfs/zfs/ |
| H A D | 0001-Define-strndupa-if-it-does-not-exist.patch | 33 line_worker(char *line, const char *cachefile)
|
| /openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
| H A D | __init__.py | 697 with open(ud.donestamp, "rb") as cachefile: 698 pickled = pickle.Unpickler(cachefile) 714 with open(ud.donestamp, "wb") as cachefile: 715 p = pickle.Pickler(cachefile, 2) 748 with open(ud.donestamp, "wb") as cachefile: 749 p = pickle.Pickler(cachefile, 2)
|