HomeSort by: relevance | last modified time | path
    Searched defs:task (Results 1 - 25 of 101) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/
keywords.c 19 task (int task) function
21 return task - 1;
27 return task (thread) + 1;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/
keywords.c 19 task (int task) function
21 return task - 1;
27 return task (thread) + 1;
  /src/external/bsd/ntp/dist/libntp/lib/isc/
ondestroy.c 31 #include <isc/task.h>
44 isc_ondestroy_register(isc_ondestroy_t *ondest, isc_task_t *task,
51 REQUIRE(task != NULL);
58 isc_task_attach(task, &thetask);
70 isc_task_t *task; local
78 task = eventp->ev_sender;
81 isc_task_sendanddetach(&task, &eventp);
  /src/sys/external/bsd/drm2/dist/drm/
drm_flip_work.c 36 * drm_flip_work_allocate_task - allocate a flip-work task
37 * @data: data associated to the task
44 struct drm_flip_task *task; local
46 task = kzalloc(sizeof(*task), flags);
47 if (task)
48 task->data = data;
50 return task;
55 * drm_flip_work_queue_task - queue a specific task
57 * @task: the task to handl
83 struct drm_flip_task *task; local
126 struct drm_flip_task *task, *tmp; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgomp/config/nvptx/
team.c 108 struct gomp_task *task = thr->task; local
110 gomp_finish_task (task);
126 struct gomp_task *task; local
133 task = thr->task;
134 icv = task ? &task->icv : &gomp_global_icv;
150 thr->task = &team->implicit_task[0];
152 gomp_init_task (thr->task, task, icv)
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
nta.h 39 #include <isc/task.h>
56 isc_task_t *task; member in struct:dns_ntatable
tcpmsg.h 35 isc_task_t *task; member in struct:dns_tcpmsg
78 dns_tcpmsg_readmessage(dns_tcpmsg_t *tcpmsg, isc_task_t *task,
88 *\li "task", "taskaction", and "arg" be valid.
dyndb.h 45 isc_task_t *task; member in struct:dns_dyndbctx
139 dns_view_t *view, dns_zonemgr_t *zmgr, isc_task_t *task,
  /src/external/gpl3/gcc/dist/libgomp/config/nvptx/
team.c 134 struct gomp_task *task = thr->task; local
136 gomp_finish_task (task);
152 struct gomp_task *task; local
159 task = thr->task;
160 icv = task ? &task->icv : &gomp_global_icv;
176 thr->task = &team->implicit_task[0];
178 gomp_init_task (thr->task, task, icv)
    [all...]
  /src/external/gpl3/gcc.old/dist/libgomp/config/gcn/
team.c 142 struct gomp_task *task = thr->task; local
144 gomp_finish_task (task);
157 struct gomp_task *task; local
164 task = thr->task;
165 icv = task ? &task->icv : &gomp_global_icv;
181 thr->task = &team->implicit_task[0];
183 gomp_init_task (thr->task, task, icv)
    [all...]
  /src/sys/arch/arm/nvidia/
tegra_drm.c 245 struct tegra_drm_task *const task = local
249 (*task->tdt_fn)(task);
287 struct tegra_drm_task *task = container_of(work, struct tegra_drm_task, local
290 (*task->tdt_fn)(task);
294 tegra_task_init(struct tegra_drm_task *task,
298 task->tdt_fn = fn;
302 tegra_task_schedule(device_t self, struct tegra_drm_task *task)
307 SIMPLEQ_INSERT_TAIL(&sc->sc_tasks, task, tdt_u.queue)
    [all...]
  /src/sys/external/bsd/drm2/amdgpu/
amdgpu_pci.c 215 struct amdgpu_task *const task = SIMPLEQ_FIRST(&sc->sc_tasks); local
218 (*task->rt_fn)(task);
291 struct amdgpu_task *const task = container_of(work, struct amdgpu_task, local
294 (*task->rt_fn)(task);
298 amdgpu_task_schedule(device_t self, struct amdgpu_task *task)
303 SIMPLEQ_INSERT_TAIL(&sc->sc_tasks, task, rt_u.queue);
305 workqueue_enqueue(sc->sc_task_wq, &task->rt_u.work, NULL);
  /src/sys/external/bsd/drm2/i915drm/
i915_pci_autoconf.c 213 struct i915drmkms_task *const task = local
217 (*task->ift_fn)(task);
295 struct i915drmkms_task *const task = container_of(work, local
298 (*task->ift_fn)(task);
302 i915drmkms_task_schedule(device_t self, struct i915drmkms_task *task)
307 SIMPLEQ_INSERT_TAIL(&sc->sc_tasks, task, ift_u.queue);
309 workqueue_enqueue(sc->sc_task_wq, &task->ift_u.work, NULL);
  /src/external/gpl3/gcc/dist/libgomp/config/gcn/
team.c 161 struct gomp_task *task = thr->task; local
163 gomp_finish_task (task);
176 struct gomp_task *task; local
183 task = thr->task;
184 icv = task ? &task->icv : &gomp_global_icv;
200 thr->task = &team->implicit_task[0];
202 gomp_init_task (thr->task, task, icv)
    [all...]
  /src/external/gpl3/gcc/dist/libgomp/
taskloop.c 29 /* Called when encountering an explicit task directive. If IF_CLAUSE is
30 false, then we must not delay in executing the task. If UNTIED is true,
31 then the task may be executed by any member of the team. */
43 /* If pthread_mutex_* is used for omp_*lock*, then each task must be
184 && thr->task
185 && thr->task->taskgroup)
187 if (thr->task->taskgroup->cancelled)
189 if (thr->task->taskgroup->workshare
190 && thr->task->taskgroup->prev
191 && thr->task->taskgroup->prev->cancelled
216 struct gomp_task task[num_tasks]; local
263 struct gomp_task task; local
303 struct gomp_task *task local
365 struct gomp_task *task = tasks[i]; local
    [all...]
priority_queue.c 33 /* Sanity check to verify whether a TASK is in LIST. Return TRUE if
36 TYPE is the type of priority queue this task resides in. */
41 struct gomp_task *task)
46 if (priority_node_to_task (type, p) == task)
59 struct gomp_task *task)
62 = priority_queue_lookup_priority (head, task->priority);
65 return priority_queue_task_in_list_p (type, list, task);
74 struct gomp_task *task)
79 return priority_queue_task_in_tree_p (type, head, task);
81 return priority_queue_task_in_list_p (type, &head->l, task);
181 struct gomp_task *task = priority_tree_find (type, node->right, pred); local
204 struct gomp_task *task = priority_node_to_task (type, node); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgomp/
taskloop.c 29 /* Called when encountering an explicit task directive. If IF_CLAUSE is
30 false, then we must not delay in executing the task. If UNTIED is true,
31 then the task may be executed by any member of the team. */
43 /* If pthread_mutex_* is used for omp_*lock*, then each task must be
184 && thr->task
185 && thr->task->taskgroup)
187 if (thr->task->taskgroup->cancelled)
189 if (thr->task->taskgroup->workshare
190 && thr->task->taskgroup->prev
191 && thr->task->taskgroup->prev->cancelled
216 struct gomp_task task[num_tasks]; local
263 struct gomp_task task; local
303 struct gomp_task *task local
365 struct gomp_task *task = tasks[i]; local
    [all...]
priority_queue.c 33 /* Sanity check to verify whether a TASK is in LIST. Return TRUE if
36 TYPE is the type of priority queue this task resides in. */
41 struct gomp_task *task)
46 if (priority_node_to_task (type, p) == task)
59 struct gomp_task *task)
62 = priority_queue_lookup_priority (head, task->priority);
65 return priority_queue_task_in_list_p (type, list, task);
74 struct gomp_task *task)
79 return priority_queue_task_in_tree_p (type, head, task);
81 return priority_queue_task_in_list_p (type, &head->l, task);
181 struct gomp_task *task = priority_tree_find (type, node->right, pred); local
204 struct gomp_task *task = priority_node_to_task (type, node); local
    [all...]
  /src/sys/external/bsd/drm2/nouveau/
nouveau_pci.c 264 struct nouveau_pci_task *const task = local
268 (*task->nt_fn)(task);
345 struct nouveau_pci_task *const task = container_of(work, local
348 (*task->nt_fn)(task);
352 nouveau_pci_task_schedule(device_t self, struct nouveau_pci_task *task)
357 SIMPLEQ_INSERT_TAIL(&sc->sc_tasks, task, nt_u.queue);
359 workqueue_enqueue(sc->sc_task_wq, &task->nt_u.work, NULL);
  /src/sys/external/bsd/drm2/radeon/
radeon_pci.c 315 struct radeon_task *const task = SIMPLEQ_FIRST(&sc->sc_tasks); local
318 (*task->rt_fn)(task);
393 struct radeon_task *const task = container_of(work, struct radeon_task, local
396 (*task->rt_fn)(task);
400 radeon_task_schedule(device_t self, struct radeon_task *task)
405 SIMPLEQ_INSERT_TAIL(&sc->sc_tasks, task, rt_u.queue);
407 workqueue_enqueue(sc->sc_task_wq, &task->rt_u.work, NULL);
  /src/sys/external/bsd/drm2/vmwgfx/
vmwgfx_pci.c 246 struct vmwgfx_task *const task = SIMPLEQ_FIRST(&sc->sc_tasks); local
249 (*task->vt_fn)(task);
319 struct vmwgfx_task *const task = container_of(work, struct vmwgfx_task, local
322 (*task->vt_fn)(task);
326 vmwgfx_task_schedule(device_t self, struct vmwgfx_task *task)
331 SIMPLEQ_INSERT_TAIL(&sc->sc_tasks, task, vt_u.queue);
333 workqueue_enqueue(sc->sc_task_wq, &task->vt_u.work, NULL);
  /src/external/bsd/openldap/dist/contrib/slapd-modules/kinit/
kinit.c 206 struct re_s *task = NULL; local
237 task = ldap_pvt_runqueue_insert( &slapd_rq, 10, kinit_qtask, (void*)kid,
270 struct re_s *task; local
272 task=ldap_pvt_runqueue_find( &slapd_rq, kinit_qtask, (void*)kid);
273 if (task) {
274 if ( ldap_pvt_runqueue_isrunning(&slapd_rq, task) ) {
275 ldap_pvt_runqueue_stoptask(&slapd_rq, task);
277 ldap_pvt_runqueue_remove(&slapd_rq, task);
  /src/external/gpl3/gdb/dist/gdb/
darwin-nat.h 28 /* Thread and task taking the exception. */
132 /* Describe the mach exception handling state for a task. This state is saved
163 /* Corresponding task port. */
164 task_t task = 0; member in struct:darwin_inferior
166 /* Port which will receive the dead-name notification for the task port.
167 This is used to detect the death of the task. */
179 /* True if this task is suspended. */
  /src/external/gpl3/gdb.old/dist/gdb/
darwin-nat.h 28 /* Thread and task taking the exception. */
132 /* Describe the mach exception handling state for a task. This state is saved
163 /* Corresponding task port. */
164 task_t task = 0; member in struct:darwin_inferior
166 /* Port which will receive the dead-name notification for the task port.
167 This is used to detect the death of the task. */
179 /* True if this task is suspended. */
  /src/external/mpl/dhcp/bind/dist/lib/dns/
byaddr.c 24 #include <isc/task.h>
103 isc_task_t *task; member in struct:dns_byaddr
147 lookup_done(isc_task_t *task, isc_event_t *event) {
154 REQUIRE(byaddr->task == task);
156 UNUSED(task);
167 isc_task_sendanddetach(&byaddr->task, (isc_event_t **)(void *)&byaddr->event);
193 dns_view_t *view, unsigned int options, isc_task_t *task,
211 byaddr->task = NULL;
212 isc_task_attach(task, &byaddr->task)
    [all...]

Completed in 38 milliseconds

1 2 3 4 5