/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | data.py | 390 tasklist = d.getVar('__BBTASKS', False) or [] 391 for task in tasklist: 405 return tasklist, deps, values 407 def generate_dependency_hash(tasklist, gendeps, lookupcache, ignored_vars, fn): argument 411 for task in tasklist:
|
H A D | event.py | 439 def __init__(self, fn, tasklist): argument 441 self.tasklist = tasklist
|
H A D | siggen.py | 253 tasklist, gendeps, lookupcache = bb.data.generate_dependencies(d, self.basehash_ignore_vars) 255 …taskdeps, basehash = bb.data.generate_dependency_hash(tasklist, gendeps, lookupcache, self.basehas… 257 for task in tasklist:
|
H A D | build.py | 883 def add_tasks(tasklist, d): argument 892 for task in tasklist:
|
H A D | runqueue.py | 1799 tasklist = [] 1801 tasklist.append(tid) 1803 if tasklist: 1804 …ween the current build and any cached tasks start at the following tasks:\n" + "\n".join(tasklist))
|
/openbmc/openbmc/poky/bitbake/lib/bb/parse/ |
H A D | ast.py | 444 def handleVirtRecipeProviders(tasklist, d): argument 457 for task in tasklist: 490 tasklist = d.getVar('__BBTASKS', False) or [] 491 bb.event.fire(bb.event.RecipeTaskPreProcess(fn, list(tasklist)), d) 492 handleVirtRecipeProviders(tasklist, d) 493 bb.build.add_tasks(tasklist, d)
|
/openbmc/openbmc/meta-openembedded/meta-xfce/recipes-xfce/packagegroups/ |
H A D | packagegroup-xfce-base.bb | 29 xfce4-panel-plugin-tasklist \
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | populate_sdk_ext.bbclass | 54 tasklist = bb.build.tasksbetween('do_image_complete', 'do_build', d) 55 tasklist.remove('do_build') 57 if v[1] in tasklist: 501 tasklistfn = d.getVar('WORKDIR') + '/tasklist.txt' 803 tasklist = bb.build.tasksbetween('do_image_complete', 'do_build', d) 804 tasklist.append('do_rootfs') 805 for task in tasklist:
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | event.py | 541 tasklist = [("foobar", callback)] 542 event = bb.event.RecipeTaskPreProcess(callback, tasklist) 544 self.assertEqual(event.tasklist, tasklist)
|
H A D | data.py | 506 tasklist, gendeps, lookupcache = bb.data.generate_dependencies(d, set()) 507 …taskdeps, basehash = bb.data.generate_dependency_hash(tasklist, gendeps, lookupcache, set(), "some…
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | sstate.bbclass | 1039 tasklist = [] 1042 tasklist.append((tid, sstatefile)) 1044 if tasklist: 1045 nproc = min(int(d.getVar("BB_NUMBER_THREADS")), len(tasklist)) 1049 progress = len(tasklist) >= 100 1052 bb.event.fire(bb.event.ProcessStarted(msg, len(tasklist)), d) 1063 executor.map(checkstatus, tasklist.copy())
|
H A D | staging.bbclass | 659 bbtasks = e.tasklist
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ |
H A D | views.py | 822 def _find_task_revdep_list(tasklist): argument 823 tdeps = Task_Dependency.objects.filter(depends_on__in=tasklist).filter(task__order__gt=0)
|
/openbmc/linux/Documentation/admin-guide/sysctl/ |
H A D | vm.rst | 715 tasklist and select a task based on heuristics to kill. This normally 721 tasklist scan.
|
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/ |
H A D | bitbake-user-manual-execution.rst | 378 .. _ref-bitbake-tasklist:
|
/openbmc/linux/Documentation/admin-guide/cgroup-v1/ |
H A D | cpusets.rst | 296 the tasklist can be avoided on each set of queries.
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | debugging.rst | 639 bb.debug(2, "Finished figuring out the tasklist")
|