Searched refs:cachefile (Results 1 – 6 of 6) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | cache.py | 83 cachefile = "bb_cache.dat" variable in CoreRecipeInfo 426 cachefile = self.getCacheFile(cache_class.cachefile) 456 cachefile = self.getCacheFile(cache_class.cachefile) 458 with open(cachefile, "rb") as cachefile: 469 cachefile = self.getCacheFile(cache_class.cachefile) 471 with open(cachefile, "rb") as cachefile: 683 cachefile = self.getCacheFile(cache_class.cachefile) 700 def mtime(cachefile): argument 835 self.cachefile = None 870 if not self.cachefile: [all …]
|
H A D | persist_data.py | 83 def __init__(self, cachefile, table): argument 84 self.cachefile = cachefile 103 self.connection = sqlite3.connect(self.cachefile, timeout=5) 251 cachefile = os.path.join(cachedir, "bb_persist_data.sqlite3") 254 return SQLTable(cachefile, domain) 262 if len(cachefile) > max_len: 266 len(cachefile), 268 cachefile))
|
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 | 677 with open(ud.donestamp, "rb") as cachefile: 678 pickled = pickle.Unpickler(cachefile) 694 with open(ud.donestamp, "wb") as cachefile: 695 p = pickle.Pickler(cachefile, 2) 728 with open(ud.donestamp, "wb") as cachefile: 729 p = pickle.Pickler(cachefile, 2)
|