Home
last modified time | relevance | path

Searched refs:CustomImageRecipe (Results 1 – 8 of 8) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_builddashboard_page.py17 from orm.models import Layer, Layer_Version, Recipe, CustomImageRecipe, Variable
118 self.custom_image_recipe1 = CustomImageRecipe.objects.create(
126 self.custom_image_recipe2 = CustomImageRecipe.objects.create(
138 self.custom_image_recipe3 = CustomImageRecipe.objects.create(
H A Dtest_new_custom_image_page.py15 from orm.models import Layer_Version, Recipe, CustomImageRecipe
75 CustomImageRecipe.objects.create(
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Dapi.py19 from orm.models import Recipe, CustomImageRecipe, CustomImagePackage
554 custom_images = CustomImageRecipe.objects.all()
575 name=CustomImageRecipe.LAYER_NAME,
606 recipe, r_created = CustomImageRecipe.objects.get_or_create(
656 CustomImageRecipe.LAYER_NAME)
710 CustomImageRecipe.objects.get(pk=recipe_id)
713 except CustomImageRecipe.DoesNotExist:
986 except CustomImageRecipe.DoesNotExist:
H A Dtables.py11 from orm.models import CustomImageRecipe, Package, Target, Build, LogMessage, Task
500 self.queryset = CustomImageRecipe.objects.filter(project=prj)
563 custom_image_recipes = CustomImageRecipe.objects.filter(
767 CustomImageRecipe.objects.get(pk=kwargs['custrecipeid'])
802 CustomImageRecipe.objects.get(pk=kwargs['custrecipeid'])
H A Dviews.py27 from orm.models import BitbakeVersion, CustomImageRecipe, EventLogsImports
1754 recipe = get_object_or_404(CustomImageRecipe, pk=recipe_id)
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/
H A Dlocalhostbecontroller.py14 from orm.models import CustomImageRecipe, Layer, Layer_Version, Project, ToasterSetting
108 if CustomImageRecipe.LAYER_NAME in layer.name:
230 customrecipe = CustomImageRecipe.objects.get(
240 except CustomImageRecipe.DoesNotExist:
255 CustomImageRecipe.LAYER_NAME)
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/views/
H A Dtest_views.py21 from orm.models import CustomImageRecipe
57 self.customr = CustomImageRecipe.objects.first()
193 recipe = CustomImageRecipe.objects.get(project=self.project,
242 recipe = CustomImageRecipe.objects.create(
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/
H A Dmodels.py414 customrecipe = CustomImageRecipe.objects.filter(
660 queryset = CustomImageRecipe.objects.filter(criteria).order_by('name')
1623 class CustomImageRecipe(Recipe): class