Searched refs:pkg_pn (Results 1 – 12 of 12) 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 34 if not pkg_pn: 35 pkg_pn = dataCache.pkg_pn 45 for pn in pkg_pn: 46 …last_ver, last_file, pref_ver, pref_file, req) = findBestProvider(pn, localdata, dataCache, pkg_pn) 63 def sortPriorities(pn, dataCache, pkg_pn = None): argument 68 if not pkg_pn: 69 pkg_pn = dataCache.pkg_pn 71 files = pkg_pn[pn] 118 def findPreferredProvider(pn, cfgData, dataCache, pkg_pn = None, item = None): argument [all …]
|
| H A D | tinfoil.py | 144 pkg_pn = defaultdict(list, self.tinfoil.run_command('getRecipes', self.mc) or []) 146 for pn, fnlist in pkg_pn.items(): 149 self._cache['pkg_pn'] = pkg_pn 562 recipes = sorted(recipecache.pkg_pn.items()) 564 recipes = recipecache.pkg_pn.items() 589 for pn in recipecache.pkg_pn.keys(): 616 fns=recipecache.pkg_pn[actual_pn])
|
| H A D | cache.py | 139 cachedata.pkg_pn = defaultdict(list) 174 cachedata.pkg_pn[self.pn].append(fn)
|
| H A D | cooker.py | 553 for p in sorted(self.recipecaches[''].pkg_pn): 1119 …ers.findProviders(self.databuilder.mcdata[mc], self.recipecaches[mc], self.recipecaches[mc].pkg_pn) 1130 elif pn in self.recipecaches[mc].pkg_pn: 1131 …dBestProvider(pn, self.databuilder.mcdata[mc], self.recipecaches[mc], self.recipecaches[mc].pkg_pn)
|
| H A D | taskdata.py | 175 'pkg_pn': dataCache.pkg_pn,
|
| H A D | command.py | 311 return list(command.cooker.recipecaches[mc].pkg_pn.items())
|
| /OK3568_Linux_fs/yocto/poky/scripts/contrib/ |
| H A D | list-packageconfig-flags.py | 33 def get_fnlist(bbhandler, pkg_pn, preferred): argument 36 …ons) = bb.providers.findProviders(bbhandler.config_data, bbhandler.cooker.recipecaches[''], pkg_pn) 39 for pn in sorted(pkg_pn): 43 fn_list.extend(pkg_pn[pn]) 49 pkg_pn = bbhandler.cooker.recipecaches[''].pkg_pn 52 for fn in get_fnlist(bbhandler, pkg_pn, preferred):
|
| H A D | verify-homepage.py | 38 pkg_pn = bbhandler.cooker.recipecaches[''].pkg_pn 39 pnlist = sorted(pkg_pn) 43 for fn in pkg_pn[pn]:
|
| H A D | devtool-stress.py | 35 pkg_pn = tinfoil.cooker.recipecaches[''].pkg_pn 36 …ersions) = bb.providers.findProviders(tinfoil.config_data, tinfoil.cooker.recipecaches[''], pkg_pn) 41 for pn in sorted(pkg_pn):
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | verify-bashisms | 122 pkg_pn = tinfoil.cooker.recipecaches[""].pkg_pn variable 127 initial_pns = sorted(pkg_pn) 133 for fn in pkg_pn[pn]:
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bblayers/ |
| H A D | query.py | 132 pkg_pn = self.tinfoil.cooker.recipecaches[mc].pkg_pn 152 if not p in pkg_pn: 153 pkg_pn[p] = 'dummy' 182 for p in sorted(pkg_pn): 279 pnlist = list(self.tinfoil.cooker_data.pkg_pn.keys()) 302 filenames = self.tinfoil.cooker_data.pkg_pn[pn] 371 if pn in self.tinfoil.cooker_data.pkg_pn:
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | tinfoil.py | 86 pkg_pn = tinfoil.cooker.recipecaches[''].pkg_pn 88 self.assertIn(pn, pkg_pn)
|