| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/ |
| H A D | siggen.py | 16 import bb.siggen 24 actual_cleaned = bb.siggen.clean_basepath(basepath) 32 actual_cleaned = bb.siggen.clean_basepath(basepath) 40 actual_cleaned = bb.siggen.clean_basepath(basepath) 48 actual_cleaned = bb.siggen.clean_basepath(basepath) 56 actual_cleaned = bb.siggen.clean_basepath(basepath) 64 actual_cleaned = bb.siggen.clean_basepath(basepath)
|
| H A D | parse.py | 19 import bb.siggen 36 bb.parse.siggen = bb.siggen.init(self.d)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | sstatesig.py | 4 import bb.siggen 8 def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCaches): argument 55 if "%s->%s" % (recipename, depname) in siggen.saferecipedeps: 59 if "*->%s" % depname in siggen.saferecipedeps and recipename != depname: 73 if depname in siggen.abisaferecipes and not isImage(mc, fn): 102 class SignatureGeneratorOEBasic(bb.siggen.SignatureGeneratorBasic): 162 return super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigs(dataCache, options) 229 … super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigtask(fn, task, stampbase, runtime) 311 class SignatureGeneratorOEBasicHash(SignatureGeneratorOEBasicHashMixIn, bb.siggen.SignatureGenerato… 314 …rOEEquivHash(SignatureGeneratorOEBasicHashMixIn, bb.siggen.SignatureGeneratorUniHashMixIn, bb.sigg… [all …]
|
| H A D | copy_buildsystem.py | 174 bb.parse.siggen.dump_lockedsigs(sigfile, tasks)
|
| H A D | buildhistory_analysis.py | 551 hashfiles = bb.siggen.find_siginfo(pn, taskname, hashes, tinfoil.config_data) 565 … out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb, collapsed=True)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/bin/ |
| H A D | bitbake-diffsigs | 23 import bb.siggen 99 … out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb, color=color) 170 output = bb.siggen.dump_sigfile(files[-1]) 180 output = bb.siggen.compare_sigfiles(files[-2], files[-1], recursecb, color=color) 189 …output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, recursecb, color=c… 191 output = bb.siggen.dump_sigfile(options.sigdatafile1)
|
| H A D | bitbake-dumpsig | 23 import bb.siggen 99 … out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb, color=color) 170 output = bb.siggen.dump_sigfile(files[-1]) 180 output = bb.siggen.compare_sigfiles(files[-2], files[-1], recursecb, color=color) 189 …output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, recursecb, color=c… 191 output = bb.siggen.dump_sigfile(options.sigdatafile1)
|
| H A D | bitbake-worker | 255 bb.parse.siggen.set_taskdata(workerdata["sigdata"]) 257 bb.parse.siggen.set_taskhashes(workerdata["newhashes"])
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/ |
| H A D | __init__.py | 25 import bb.siggen 117 bb.parse.siggen.exit() 118 bb.parse.siggen = bb.siggen.init(d)
|
| H A D | ast.py | 360 bb.parse.siggen.finalise(fn, d, variant)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | runqueue.py | 936 bb.parse.siggen.invalidate_task(taskname, self.dataCaches[mc], taskfn) 1223 if hasattr(bb.parse.siggen, "tasks_resolved"): 1224 bb.parse.siggen.tasks_resolved(virtmap, virtpnmap, self.dataCaches[mc]) 1228 bb.parse.siggen.set_setscene_tasks(self.runq_setscene_tids) 1240 bb.parse.siggen.writeout_file_checksum_cache() 1246 dc = bb.parse.siggen.get_data_caches(self.dataCaches, mc_from_tid(tid)) 1247 bb.parse.siggen.prep_taskhash(tid, self.runtaskentries[tid].depends, dc) 1248 …self.runtaskentries[tid].hash = bb.parse.siggen.get_taskhash(tid, self.runtaskentries[tid].depends… 1249 self.runtaskentries[tid].unihash = bb.parse.siggen.get_unihash(tid) 1318 "sigdata" : bb.parse.siggen.get_taskdata(), [all …]
|
| H A D | cooker.py | 1347 siggen_cache = getattr(bb.parse.siggen, 'checksum_cache', None) 1349 bb.parse.siggen.checksum_cache.mtime_cache.clear() 1454 bb.parse.siggen.invalidate_task(task, self.recipecaches[mc], fn) 1505 bb.parse.siggen.reset(self.data) 1644 bb.parse.siggen.reset(self.data) 1751 bb.parse.siggen.exit() 1773 bb.parse.siggen.exit() 2112 bb.parse.siggen.postparsing_clean_cache()
|
| H A D | build.py | 803 stamp = bb.parse.siggen.stampfile(stamp, file_name, taskname, extrainfo) 834 cleanmask = bb.parse.siggen.stampcleanmask(stamp, file_name, taskname, extrainfo) 870 bb.parse.siggen.dump_sigtask(file_name, task, stampbase, True)
|
| H A D | command.py | 771 res = bb.siggen.find_siginfo(pn, taskname, sigs, command.cooker.databuilder.mcdata[mc])
|
| H A D | siggen.py | 728 bb.parse.siggen.dump_sigtask(fn, task, outfile, "customfile:" + referencestamp)
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | bitbake-whatchanged | 33 import bb.siggen 182 output = bb.siggen.compare_sigfiles(full_path_old, full_path_new)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | sstatetests.py | 15 import bb.siggen 557 output = bb.siggen.compare_sigfiles(sigdatafile1, sigdatafile2)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/runqueue-tests/classes/ |
| H A D | base.bbclass | 20 bb.parse.siggen.report_unihash(os.getcwd(), d.getVar("BB_CURRENTTASK"), d)
|
| /OK3568_Linux_fs/yocto/poky/documentation/migration-guides/ |
| H A D | release-notes-4.0.5.rst | 26 - bitbake: siggen: Fix insufficent entropy in sigtask file names
|
| H A D | release-notes-4.0.8.rst | 37 - bitbake: siggen: Fix inefficient string concatenation
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | sstate.bbclass | 731 bb.siggen.dump_this_task(siginfo, d) 891 report_unihash = getattr(bb.parse.siggen, 'report_unihash', None) 1064 if hasattr(bb.parse.siggen, "checkhashes"): 1065 bb.parse.siggen.checkhashes(sq_data, missed, found, d) 1188 bb.siggen.dump_this_task(siginfo, d)
|
| H A D | populate_sdk_ext.bbclass | 405 bb.parse.siggen.save_unitaskhashes() 496 bb.parse.siggen.save_unitaskhashes()
|
| H A D | buildhistory.bbclass | 721 if hasattr(bb.parse.siggen, 'dump_siglist'): 724 …bb.parse.siggen.dump_siglist(os.path.join(taskoutdir, 'tasksigs.txt'), d.getVar("BUILDHISTORY_PATH…
|