Home
last modified time | relevance | path

Searched refs:Task (Results 1 – 25 of 99) sorted by relevance

1234

/openbmc/linux/rust/kernel/
H A Dtask.rs16 unsafe { &*$crate::task::Task::current() }
65 pub struct Task(pub(crate) Opaque<bindings::task_struct>); struct
71 unsafe impl Send for Task {} implementation
76 unsafe impl Sync for Task {} implementation
81 impl Task { implementation
90 pub unsafe fn current() -> impl Deref<Target = Task> { in current()
92 task: &'a Task, in current()
97 type Target = Task; in current()
117 pub fn group_leader(&self) -> &Task { in group_leader() argument
151 unsafe impl crate::types::AlwaysRefCounted for Task { implementation
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/builds/
H A Dtest_core_image_min.py17 from orm.models import Target_Image_File, Target_Installed_Package, Task
52 tasks = Task.objects.filter(
73 tasks = Task.objects.filter(outcome=2).values('id', 'sstate_result')
86 tasks = Task.objects.filter(
87 outcome__in=(Task.OUTCOME_COVERED,
88 Task.OUTCOME_PREBUILT)).values('id',
93 if (task['sstate_result'] != Task.SSTATE_NA and
94 task['sstate_result'] != Task.SSTATE_MISS):
106 tasks = Task.objects.filter(
121 tasks = Task.objects.filter(
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/icecc-create-env/
H A Dicecc-create-env_0.1.bb17 # Task 10907 (meta/recipes-devtools/quilt/quilt-native_0.60.bb, do_install) (dependent Tasks ['qui…
18 # Task 10908 (meta/recipes-devtools/quilt/quilt-native_0.60.bb, do_populate_sysroot) (dependent Ta…
19 # Task 10997 (meta/recipes-devtools/icecc-create-env/icecc-create-env-native_0.1.bb, do_patch) (de…
20 # Task 11001 (meta/recipes-devtools/icecc-create-env/icecc-create-env-native_0.1.bb, do_configure)…
21 # Task 11002 (meta/recipes-devtools/icecc-create-env/icecc-create-env-native_0.1.bb, do_compile) (…
22 # Task 10998 (meta/recipes-devtools/icecc-create-env/icecc-create-env-native_0.1.bb, do_install) (…
23 # Task 10999 (meta/recipes-devtools/icecc-create-env/icecc-create-env-native_0.1.bb, do_populate_s…
24 # Task 10910 (meta/recipes-devtools/quilt/quilt-native_0.60.bb, do_configure) (dependent Tasks ['q…
25 # Task 10911 (meta/recipes-devtools/quilt/quilt-native_0.60.bb, do_compile) (dependent Tasks ['qui…
/openbmc/openbmc-test-automation/redfish/task_service/
H A Dtest_tasks_service.robot23 Verify Task Service Attributes
34 # "Name": "Task Service",
75 Test Generated Task Instance Validity And Task State
82 # "@odata.type": "#Task.v1_4_3.Task",
96 # "Name": "Task 3",
119 ${task_id} ${resp_obj}= Generate Task Instance
149 Wait For Task Completion ${task_id} ${allowed_task_completion_state}
171 Verify Task Persistency Post BMC Reboot
175 Verify Generate Task Instance Completion
194 Load Task Service Properties Data
[all …]
/openbmc/sdbusplus/test/async/
H A Dtask.cpp8 TEST(Task, CoAwaitVoid) in TEST() argument
24 TEST(Task, CoAwaitInt) in TEST() argument
48 TEST(Task, CoAwaitThrow) in TEST() argument
80 TEST(Task, RecursiveTask) in TEST() argument
/openbmc/openbmc-test-automation/lib/
H A Dredfish_code_update_utils.robot303 Create List Of Task
308 # task_dict_list Task id dictionary list.
321 Create Initiated Task State Dict
327 # task_obj Task dictionary.
344 Get Task Inventory
349 # task_info Task information.
351 # Task information.
359 ${task_inv}= Create Initiated Task State Dict ${task_payload}
369 # task_list Task id list.
370 # target_uri Task created for target URI.
[all …]
H A Ddump_utils.robot275 Initiate BMC Dump Using Redfish And Return Task Id
285 # "@odata.type": "#Task.v1_4_3.Task",
309 # "@odata.type": "#Task.v1_4_3.Task",
315 Wait Until Keyword Succeeds 5 min 15 sec Check Task Completion ${resp.dict['Id']}
377 # task_id Task ID.
400 Get Task Status
405 # task_id Task ID.
410 Check Task Completion
415 # task_id Task ID.
425 # task_id Task ID.
[all …]
H A Dcode_update_utils.robot552 Get All Task
568 ${task_dict}= Get Task Objects ${task_list}
570 …${task_inventory}= Check Task Attribute ${target_uri} ${match_status} ${match_state} ${task_d…
578 Get Task Objects
604 Check Task Attribute
615 # task_dict Task inventory.
631 Check Task Progress State
636 # task_inv_dict Task inventory dictionary.
777 ${task_inv_dict}= Get Task State from File
795 ${task_inv}= Check Task With Match TargetUri ${redfish_update_uri}
[all …]
/openbmc/qemu/io/
H A Dtrace-events4 qio_task_new(void *task, void *source, void *func, void *opaque) "Task new task=%p source=%p func=%…
5 qio_task_complete(void *task) "Task complete task=%p"
6 qio_task_thread_start(void *task, void *worker, void *opaque) "Task thread start task=%p worker=%p …
7 qio_task_thread_run(void *task) "Task thread run task=%p"
8 qio_task_thread_exit(void *task) "Task thread exit task=%p"
9 qio_task_thread_result(void *task) "Task thread result task=%p"
10 qio_task_thread_source_attach(void *task, void *source) "Task thread source attach task=%p source=%…
11 qio_task_thread_source_cancel(void *task, void *source) "Task thread source cancel task=%p source=%…
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_task_page.py14 from orm.models import Task, Task_Dependency
39 self.task = Task.objects.create(build=self.build, recipe=recipe,
40 order=1, outcome=Task.OUTCOME_COVERED, task_executed=False,
H A Dtest_most_recent_builds_states.py13 from orm.models import Project, Build, Task, Recipe, Layer, Layer_Version
90 task1 = Task.objects.create(build=build, recipe=recipe,
92 task2 = Task.objects.create(build=build, recipe=recipe,
103 task1.outcome = Task.OUTCOME_SUCCESS
120 task2.outcome = Task.OUTCOME_SUCCESS
H A Dtest_builddashboard_page_recipes.py13 from orm.models import Project, Build, Recipe, Task, Layer, Layer_Version
35 task = Task.objects.create(build=self.build, recipe=recipe, order=1)
H A Dtest_builddashboard_page_tasks.py13 from orm.models import Project, Build, Recipe, Task, Layer, Layer_Version
34 task = Task.objects.create(build=self.build, recipe=recipe, order=1)
H A Dtest_all_builds_page.py19 …m.models import BitbakeVersion, Layer, Layer_Version, Recipe, Release, Project, Build, Target, Task
162 task = Task.objects.create(build=build,
165 outcome=Task.OUTCOME_SUCCESS)
/openbmc/openbmc-test-automation/redfish/update_service/
H A Dtest_redfish_bmc_code_update.robot218 ${task_inv_dict}= Get Task State from File
224 ${task_inv}= Check Task With Match TargetUri ${redfish_update_uri}
228 ... Verify Task Progress State ${task_inv} ${task_inv_dict['TaskStarting']}
231 ... Verify Task Progress State ${task_inv} ${task_inv_dict['TaskCompleted']}
259 ${task_inv_dict}= Get Task State from File
288 ${task_inv2}= Get Task Inventory ${task_info2}
292 ... Verify Task Progress State ${task_inv2} ${task_inv_dict['TaskException']}
297 ${task_inv1}= Get Task Inventory ${task_info1}
301 ... Verify Task Progress State ${task_inv1} ${task_inv_dict['TaskCompleted']}
410 ${task_inv_dict}= Get Task State from File
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dbuildinfohelper.py29 from orm.models import Build, Task, Recipe, Layer_Version, Layer, Target, LogMessage, HelpText
251 task_to_update = Task.objects.get(
276 task_object, created = self._cached_get_or_create(Task,
293 …if task_object.outcome == Task.OUTCOME_COVERED and 1 == task_object.get_related_setscene().count():
294 task_object.outcome = Task.OUTCOME_CACHED
297 outcome_task_setscene = Task.objects.get(task_executed=True, build = task_object.build,
299 if outcome_task_setscene == Task.OUTCOME_SUCCESS:
300 task_object.sstate_result = Task.SSTATE_RESTORED
302 elif outcome_task_setscene == Task.OUTCOME_FAILED:
303 task_object.sstate_result = Task.SSTATE_FAILED
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/jack/jack/
H A D0002-Fix-all-DeprecationWarning-invalid-escape-sequence.patch16 waflib/Task.py | 2 +-
64 diff --git a/waflib/Task.py b/waflib/Task.py
66 --- a/waflib/Task.py
67 +++ b/waflib/Task.py
88 class subst_pc(Task.Task):
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Dbuildtables.py9 from orm.models import Build, Task, Target, Package
412 for outcome_enum, title in Task.TASK_OUTCOME:
413 if outcome_enum is Task.OUTCOME_NA:
426 for sstate_result_enum, title in Task.SSTATE_RESULT:
481 self.static_context_extra['OUTCOME_FAILED'] = Task.OUTCOME_FAILED
H A Dviews.py22 from orm.models import Build, Target, Task, Layer, Layer_Version, Recipe
546 covered_list = [ x for x in revlist if x.outcome == Task.OUTCOME_COVERED ]
548 revlist = [ x for x in revlist if x.outcome != Task.OUTCOME_COVERED ]
555 covered_list = [ x for x in revlist if x.outcome == Task.OUTCOME_COVERED ]
560 tasks_list = Task.objects.filter( pk=task_id )
571 if ( task_object.outcome == Task.OUTCOME_COVERED ):
606 context[ 'matching_tasks' ] = Task.objects.filter(
609 order__isnull=True).exclude(outcome=Task.OUTCOME_NA).order_by('-build__completed_on')
621Task.objects.filter(recipe_id = recipe_id, build_id = build_id).exclude(order__isnull=True).exclud…
809 tdeps = tdeps.exclude(depends_on__outcome=Task.OUTCOME_NA).select_related("depends_on")
[all …]
/openbmc/openbmc/poky/scripts/
H A Dbuildstats-summary22 class Task: class
62 t = Task(
/openbmc/linux/Documentation/RCU/Design/Expedited-Grace-Periods/
H A DExpedited-Grace-Periods.rst307 The next diagram shows the situation after the arrival of Task A and
308 Task B at the leftmost and rightmost leaf ``rcu_node`` structures,
317 Suppose that Task A wins, recording its desired grace-period sequence
322 Task A now advances to initiate a new grace period, while Task B moves
351 Task A now acquires the ``rcu_state`` structure's ``->exp_mutex`` and
359 Task F blocking on the root ``rcu_node`` structure and Task E wait for
360 Task A to finish so that it can start the next grace period. The
365 Once the grace period completes, Task A starts waking up the tasks
372 Task E can then acquire ``->exp_mutex`` and increment
380 occupied. However, at some point, Task A will wake up the tasks blocked
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/
H A Dmodels.py543 tf = Task.objects.filter(build = self)
546 completeper = tf.exclude(outcome=Task.OUTCOME_NA).count()*100 // tfc
670 return tasks.filter(order__gt=0, outcome=Task.OUTCOME_FAILED)
750 self.task_build.exclude(outcome=Task.OUTCOME_NA).count() == 0
1020 class Task(models.Model): class
1075 super(Task, self).__init__(*args, **kwargs)
1082 …return Task.objects.filter(task_executed=True, build = self.build, recipe = self.recipe, task_name…
1085 return Task.TASK_OUTCOME[int(self.outcome) + 1][1]
1088 return Task.TASK_OUTCOME_HELP[int(self.outcome)][1]
1091 if self.sstate_result==Task.SSTATE_NA:
[all …]
/openbmc/linux/Documentation/scheduler/
H A Dsched-deadline.rst2 Deadline Task Scheduling
19 4.2 Task interface
230 A Task T1
240 A Task T2
263 Suppose Task T1 is the first task to start execution.
269 Task T1 therefore enters the ActiveNonContending state. Since its remaining
271 Task T2 start execution, with runtime still decreased as dq = -1 dt since
276 This is the 0-lag time for Task T1. Since it didn't woken up in the
279 Task T2 continues its execution. However, its runtime is now decreased as
281 Task T2 therefore reclaims the bandwidth unused by Task T1.
[all …]
/openbmc/linux/Documentation/scsi/
H A Dcxgb3i.rst27 on the Initiator Task Tag (ITT) in Data-In or Target Task Tag (TTT)
/openbmc/linux/arch/arm/mach-omap2/
H A Domap-smc.S68 mov r6, #0xff @ Indicate new Task call

1234