Searched refs:cfgData (Results 1 – 3 of 3) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | providers.py | 29 def findProviders(cfgData, dataCache, pkg_pn = None): argument 38 localdata = data.createCopy(cfgData) 90 def versionVariableMatch(cfgData, keyword, pn): argument 97 ver = cfgData.getVar("%s_VERSION:pn-%s" % (keyword, pn)) 99 ver = cfgData.getVar("%s_VERSION_%s" % (keyword, pn)) 101 ver = cfgData.getVar("%s_VERSION" % keyword) 118 def findPreferredProvider(pn, cfgData, dataCache, pkg_pn = None, item = None): argument 127 required_v = versionVariableMatch(cfgData, "REQUIRED", pn) 128 preferred_v = versionVariableMatch(cfgData, "PREFERRED", pn) 199 def findLatestProvider(pn, cfgData, dataCache, file_set): argument [all …]
|
| H A D | taskdata.py | 327 def add_provider(self, cfgData, dataCache, item): argument 329 self.add_provider_internal(cfgData, dataCache, item) 337 def add_provider_internal(self, cfgData, dataCache, item): argument 355 …es=self.get_dependees(item), reasons=self.get_reasons(item), close_matches=close_matches), cfgData) 363 eligible, foundUnique = bb.providers.filterProviders(all_p, item, cfgData, dataCache) 367 …endees=self.get_dependees(item), reasons=["No eligible PROVIDERs exist for '%s'" % item]), cfgData) 375 bb.event.fire(bb.event.MultipleProviders(item, providers_list), cfgData) 388 def add_rprovider(self, cfgData, dataCache, item): argument 403 … runtime=True, dependees=self.get_rdependees(item), reasons=self.get_reasons(item, True)), cfgData) 406 … eligible, numberPreferred = bb.providers.filterProvidersRunTime(all_p, item, cfgData, dataCache) [all …]
|
| H A D | runqueue.py | 236 … self.skip_maxthread[rtaskname] = self.rq.cfgData.getVarFlag(rtaskname, "number_threads") 436 def __init__(self, rq, cooker, cfgData, dataCaches, taskData, targets): argument 444 self.multi_provider_allowed = (cfgData.getVar("BB_MULTI_PROVIDER_ALLOWED") or "").split() 445 self.setscene_ignore_tasks = get_setscene_enforce_ignore_tasks(cfgData, targets) 447 self.setscene_enforce = (cfgData.getVar('BB_SETSCENE_ENFORCE') == "1") 1268 def __init__(self, cooker, cfgData, dataCaches, taskData, targets): argument 1271 self.cfgData = cfgData 1272 self.rqdata = RunQueueData(self, cooker, cfgData, dataCaches, taskData, targets) 1274 self.hashvalidate = cfgData.getVar("BB_HASHCHECK_FUNCTION") or None 1275 self.depvalidate = cfgData.getVar("BB_SETSCENE_DEPVALID") or None [all …]
|