Searched refs:layerBranches (Results 1 – 6 of 6) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/tests/ |
H A D | layerindexobj.py | 27 self.index.layerBranches = {} 46 self.index.layerBranches[layerBranchId] = LayerBranch(self.index) 47 self.index.layerBranches[layerBranchId].define_data(layerBranchId, 75 self.index.layerBranches[layerBranchId] = LayerBranch(self.index) 76 self.index.layerBranches[layerBranchId].define_data(layerBranchId, 121 layerBranch = self.index.layerBranches[1] 133 layerBranch = self.index.layerBranches[2] 149 self.assertEqual(layerDependency.layerbranch, self.index.layerBranches[2]) 155 self.assertEqual(layerDependency.dependency_layerBranch, self.index.layerBranches[1]) 160 self.assertEqual(layerDependency.layerbranch, self.index.layerBranches[2]) [all …]
|
H A D | restapi.py | 47 for layerBranchId in self.layerindex.indexes[0].layerBranches: 48 … layerItemNames.remove(self.layerindex.indexes[0].layerBranches[layerBranchId].layer.name) 154 for layerbranchid in index.layerBranches: 155 self.logger.debug("Present: %s" % index.layerBranches[layerbranchid].layer.name)
|
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/ |
H A D | cooker.py | 88 index.layerBranches = {} 143 index.layerBranches[layerBranchId] = layerindexlib.LayerBranch(index, None) 144 …index.layerBranches[layerBranchId].define_data(layerBranchId, entry, layerversion, layerItemId, br… 198 for layerBranchId in index.layerBranches: 199 branchName = index.layerBranches[layerBranchId].branch.name 200 collection = index.layerBranches[layerBranchId].collection 291 for layerBranchId in index.layerBranches: 293 machine_path = index.layerBranches[layerBranchId].layer.description 306 layerbranch=index.layerBranches[layerBranchId]) 315 for layerBranchId in index.layerBranches: [all …]
|
H A D | __init__.py | 503 for layerbranchid in lix.layerBranches: 505 '{:26}'.format(lix.layerBranches[layerbranchid].layer.name), 506 '{:34}'.format(lix.layerBranches[layerbranchid].layer.summary), 508 … (lix.layerBranches[layerbranchid].collection, 509 lix.layerBranches[layerbranchid].version) 605 if self.branches and self.layerBranches: 682 for layerbranchid in self.layerBranches: 683 layerbranch = self.layerBranches[layerbranchid] 706 for layerbranchid in self.layerBranches: 732 for layerbranchid in self.layerBranches: [all …]
|
H A D | restapi.py | 289 layerbranches = index.layerBranches
|
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/management/commands/ |
H A D | lsupdates.py | 165 total = len(index.layerBranches) 166 for i, id in enumerate(index.layerBranches): 168 release = li_branch_id_to_toaster_release[index.layerBranches[id].branch_id] 173 pk=li_layer_id_to_toaster_layer_id[index.layerBranches[id].layer_id]), 179 index.layerBranches[id].layer_id) 183 lv.release = li_branch_id_to_toaster_release[index.layerBranches[id].branch_id] 184 lv.up_date = index.layerBranches[id].updated 185 lv.commit = index.layerBranches[id].actual_branch 186 lv.dirpath = index.layerBranches[id].vcs_subdir 189 li_layer_branch_id_to_toaster_lv_id[index.layerBranches[id].id] =\
|