Searched refs:OperationCompleted (Results 1 – 3 of 3) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | event.py | 397 class OperationCompleted(Event): class 489 class BuildCompleted(BuildBase, OperationCompleted): 493 OperationCompleted.__init__(self, total, "Building Succeeded") 495 OperationCompleted.__init__(self, total, "Building Failed") 607 class ParseCompleted(OperationCompleted): 610 OperationCompleted.__init__(self, total, "Recipe parsing Completed") 636 class CacheLoadCompleted(OperationCompleted): 639 OperationCompleted.__init__(self, total, "Loading cache Completed") 652 class TreeDataPreparationCompleted(OperationCompleted): 655 OperationCompleted.__init__(self, total, "Preparing tree data Completed")
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | event.py | 175 event2 = bb.event.OperationCompleted(total=123) 204 event2 = bb.event.OperationCompleted(total=123) 218 event2 = bb.event.OperationCompleted(total=123) 307 event2 = bb.event.OperationCompleted(total=1) 392 event2 = bb.event.OperationCompleted(total=123) 498 event = bb.event.OperationCompleted(total, msg)
|
/openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
H A D | knotty.py | 888 bb.event.OperationCompleted,
|