Searched refs:task (Results 201 - 225 of 318) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/dev/sfxge/
H A Dsfxge.h203 struct task task_reset;
/freebsd-9.3-release/sys/dev/sound/pci/hda/
H A Dhdac_private.h202 struct task unsolq_task;
/freebsd-9.3-release/sys/dev/twa/
H A Dtw_osl.h143 struct task deferred_intr_callback;/* taskqueue function */
/freebsd-9.3-release/sys/fs/nfsclient/
H A Dnfs_clnfsiod.c73 extern struct task ncl_nfsiodnew_task;
/freebsd-9.3-release/sys/mips/cavium/octe/
H A Dethernet-rx.c54 static struct task cvm_oct_task;
77 * Schedule task if there isn't one running.
339 * If we hit our limit, schedule another task while we clean up.
/freebsd-9.3-release/sys/mips/idt/
H A Dif_krreg.h264 struct task kr_link_task;
/freebsd-9.3-release/sys/net/
H A Dif_lagg.h201 struct task sc_lladdr_task;
/freebsd-9.3-release/sys/nfsclient/
H A Dnfs.h128 extern struct task nfs_nfsiodnew_task;
/freebsd-9.3-release/contrib/ntp/lib/isc/tests/
H A Dtaskpool_test.c27 #include <isc/task.h>
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dstatschannel.c31 #include <isc/task.h>
61 * the server task and the channel task.
66 /* Locked by server task */
1616 isc_task_t *task = NULL; local
1651 result = isc_task_create(ns_g_taskmgr, 0, &task);
1654 isc_task_setname(task, "statchannel", NULL);
1670 result = isc_httpdmgr_create(server->mctx, sock, task, client_ok,
1707 if (task != NULL)
1708 isc_task_detach(&task);
[all...]
/freebsd-9.3-release/sys/geom/raid/
H A Dmd_nvidia.c593 struct task *task; local
640 task = malloc(sizeof(struct task),
642 TASK_INIT(task, 0, g_disk_md_nvidia_retaste, task);
643 taskqueue_enqueue(taskqueue_swi, task);
H A Dmd_sii.c649 struct task *task; local
696 task = malloc(sizeof(struct task),
698 TASK_INIT(task, 0, g_disk_md_sii_retaste, task);
699 taskqueue_enqueue(taskqueue_swi, task);
/freebsd-9.3-release/contrib/ntp/lib/isc/win32/
H A Dlibisc.mak187 -@erase "$(INTDIR)\task.obj"
285 "$(INTDIR)\task.obj" \
450 -@erase "$(INTDIR)\task.obj"
451 -@erase "$(INTDIR)\task.sbr"
554 "$(INTDIR)\task.sbr" \
642 "$(INTDIR)\task.obj" \
1981 SOURCE=..\task.c
1986 "$(INTDIR)\task.obj" : $(SOURCE) "$(INTDIR)"
1993 "$(INTDIR)\task.obj" "$(INTDIR)\task
[all...]
/freebsd-9.3-release/contrib/ntp/
H A Dconfigure23394 static void *task(p)
23426 status = pthread_create( &t, &attr, task, NULL );
23433 status = pthread_create( &t, pthread_attr_default, task, NULL );
23475 static void *task(p)
23509 status = pthread_create( &t, &attr, task, NULL );
23516 status = pthread_create( &t, pthread_attr_default, task, NULL );
23580 static void *task(p)
23612 status = pthread_create( &t, &attr, task, NULL );
23619 status = pthread_create( &t, pthread_attr_default, task, NULL );
23661 static void *task(
[all...]
/freebsd-9.3-release/contrib/sendmail/src/
H A Dutil.c2447 ** task -- task of pid.
2475 proc_list_add(pid, task, type, count, other, hostaddr)
2477 char *task;
2535 PSTRSET(ProcListVec[i].proc_task, task);
2554 ** PROC_LIST_SET -- set pid task in process list
2558 ** task -- task of pid
2565 proc_list_set(pid, task)
2567 char *task;
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Ddb.h351 dns_db_ondestroy(dns_db_t *db, isc_task_t *task, isc_event_t **eventp);
353 * Causes 'eventp' to be sent to be sent to 'task' when the database is
358 * sent to the task.
1345 dns_db_settask(dns_db_t *db, isc_task_t *task);
1347 * If task is set then the final detach maybe performed asynchronously.
1351 * \li 'task' to be valid or NULL.
H A Dzone.h375 *\li The caller is running in the context of the zone's task.
388 *\li The caller is running in the context of the zone's task.
1163 dns_zone_settask(dns_zone_t *zone, isc_task_t *task);
1165 * Give a zone a task to work with. Any current task will be detached.
1169 *\li 'task' to be valid.
1175 * Attach '*target' to the zone's task.
1179 *\li 'zone' to have a task.
1434 *\li 'taskmgr' to be a valid task manager.
1442 * Set the size of the zone manager task poo
[all...]
H A Dview.h108 isc_task_t * task; member in struct:dns_view
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dada-tasks.c108 /* the current task */
243 valid_task_id (int task) argument
245 return get_entry_vptr (task) != NULL;
267 task */
285 /* Print detailed information about specified task */
318 /* print the Ada task id */
321 /* print the name of the task */
348 /* print the parent gdb task id */
356 /* print the name of the task */
372 /* print the base priority of the task */
[all...]
/freebsd-9.3-release/sys/dev/ata/
H A Data-queue.c271 TASK_INIT(&request->task, 0, ata_completed, request);
273 taskqueue_enqueue(taskqueue_swi, &request->task);
/freebsd-9.3-release/sys/dev/mfi/
H A Dmfivar.h245 struct task mfi_evt_task;
246 struct task mfi_map_sync_task;
/freebsd-9.3-release/contrib/bind9/bin/check/
H A Dnamed-checkzone.c35 #include <isc/task.h>
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dmem.h366 isc_task_t *task,
521 * Get the tag value for 'task', as previously set using isc_mem_setname().
530 *\li 'ctx' is a valid task.
/freebsd-9.3-release/sys/dev/cfi/
H A Dcfi_disk.c56 struct taskqueue *tq; /* private task queue for i/o request */
57 struct task iotask; /* i/o processing */
/freebsd-9.3-release/sys/dev/drm2/i915/
H A Di915_drv.h666 struct task idle_task;
682 struct task rps_task;
712 struct task error_task;
713 struct task hotplug_task;

Completed in 692 milliseconds

1234567891011>>