Searched refs:task (Results 226 - 250 of 318) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/dev/firewire/
H A Dfirewirereg.h153 struct task task_timeout;
/freebsd-9.3-release/sys/dev/mly/
H A Dmlyvar.h230 /* command-completion task */
231 struct task mly_task_complete; /* deferred-completion task */
/freebsd-9.3-release/sys/dev/nmdm/
H A Dnmdm.c77 struct task np_task;
/freebsd-9.3-release/sys/dev/nvd/
H A Dnvd.c66 struct task bioqtask;
/freebsd-9.3-release/sys/fs/nfsclient/
H A Dnfs_clsubs.c90 struct task ncl_nfsiodnew_task;
/freebsd-9.3-release/sys/sys/
H A Djail.h163 struct task pr_task; /* (d) destroy task */
/freebsd-9.3-release/tools/tools/vhba/faulty/
H A Dvhba_faulty.c48 struct task qt;
/freebsd-9.3-release/tools/tools/vhba/lots/
H A Dvhba_lots.c46 struct task qt;
/freebsd-9.3-release/tools/tools/vhba/medium/
H A Dvhba_medium.c46 struct task qt;
/freebsd-9.3-release/tools/tools/vhba/rptluns/
H A Dvhba_rptluns.c46 struct task qt;
/freebsd-9.3-release/tools/tools/vhba/simple/
H A Dvhba_simple.c46 struct task qt;
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dmem.h383 isc_task_t *task,
538 * Get the tag value for 'task', as previously set using isc_mem_setname().
547 *\li 'ctx' is a valid task.
/freebsd-9.3-release/contrib/bind9/bin/dnssec/
H A Ddnssec-signzone.c60 #include <isc/task.h>
191 sign(isc_task_t *task, isc_event_t *event);
1404 * Assigns a node to a worker thread. This is protected by the master task's
1408 assignwork(isc_task_t *task, isc_task_t *worker) { argument
1427 isc_task_detach(&task);
1499 isc_task_detach(&task);
1506 isc_event_allocate(mctx, task, SIGNER_EVENT_WORK,
1519 * Start a worker task
1522 startworker(isc_task_t *task, isc_event_t *event) { argument
1526 assignwork(task, worke
1534 writenode(isc_task_t *task, isc_event_t *event) argument
1551 sign(isc_task_t *task, isc_event_t *event) argument
[all...]
/freebsd-9.3-release/sys/dev/ata/
H A Data-all.h420 struct task task; /* task management */ member in struct:ata_request
589 struct task conntask; /* PHY events handling task */
/freebsd-9.3-release/sys/dev/bwn/
H A Dif_bwnvar.h879 struct task mac_intrtask;
880 struct task mac_hwreset;
881 struct task mac_txpower;
922 struct taskqueue *sc_tq; /* private task queue */
/freebsd-9.3-release/contrib/bind9/bin/dig/
H A Ddighost.c89 #include <isc/task.h>
342 * Apply and clear locks at the event level in global task.
360 recv_done(isc_task_t *task, isc_event_t *event);
366 connect_timeout(isc_task_t *task, isc_event_t *event);
2492 connect_done(isc_task_t *task, isc_event_t *event);
2674 connect_timeout(isc_task_t *task, isc_event_t *event) { argument
2678 UNUSED(task);
2738 tcp_length_done(isc_task_t *task, isc_event_t *event) { argument
2749 UNUSED(task);
2807 result = isc_socket_recvv(query->sock, &query->recvlist, length, task,
2889 connect_done(isc_task_t *task, isc_event_t *event) argument
3117 recv_done(isc_task_t *task, isc_event_t *event) argument
3715 onrun_callback(isc_task_t *task, isc_event_t *event) argument
[all...]
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dxfrout.c702 xfrout_senddone(isc_task_t *task, isc_event_t *event);
1207 * can stop the transfer immediately when the client task
1470 &region, xfr->client->task,
1560 xfrout_senddone(isc_task_t *task, isc_event_t *event) { argument
1565 UNUSED(task);
1605 isc_socket_cancel(xfr->client->tcpsocket, xfr->client->task,
/freebsd-9.3-release/sys/geom/raid/
H A Dmd_intel.c1079 struct task *task; local
1131 task = malloc(sizeof(struct task),
1133 TASK_INIT(task, 0, g_disk_md_intel_retaste, task);
1134 taskqueue_enqueue(taskqueue_swi, task);
/freebsd-9.3-release/sys/cam/
H A Dcam_xpt.c88 struct task task; member in struct:xpt_task
4839 struct xpt_task *task; local
4844 task = malloc(sizeof(struct xpt_task), M_CAMXPT, M_NOWAIT);
4845 if (task != NULL) {
4846 TASK_INIT(&task->task, 0, xpt_finishconfig_task, task);
4847 taskqueue_enqueue(taskqueue_thread, &task->task);
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Drbtdb.c41 #include <isc/task.h>
426 isc_task_t * task; member in struct:dns_rbtdb
540 static void prune_tree(isc_task_t *task, isc_event_t *event);
692 free_rbtdb_callback(isc_task_t *task, isc_event_t *event) { argument
695 UNUSED(task);
882 rbtdb->quantum = (rbtdb->task != NULL) ? 100 : 0;
904 INSIST(rbtdb->task != NULL);
917 isc_task_send(rbtdb->task, &event);
983 if (rbtdb->task != NULL)
984 isc_task_detach(&rbtdb->task);
1897 prune_tree(isc_task_t *task, isc_event_t *event) argument
2156 cleanup_dead_nodes_callback(isc_task_t *task, isc_event_t *event) argument
7213 settask(dns_db_t *db, isc_task_t *task) argument
[all...]
/freebsd-9.3-release/sys/boot/i386/btx/btx/
H A Dbtx.S45 .set PSL_NT,0x00004000 # Nested task flag
205 * Launch user task.
207 movb $SEL_TSS,%cl # Set task
636 movb $SEL_TSS,%cl # Set task
683 * Return to the user task
/freebsd-9.3-release/sys/dev/oce/
H A Doce_if.h267 struct taskqueue *tq; /* Associated task queue */
268 struct task task; /* task queue task */ member in struct:oce_intr_info
269 char task_name[32]; /* task name */
704 struct task txtask;
/freebsd-9.3-release/sys/contrib/rdma/
H A Drdma_addr.c80 static struct task addr_task;
/freebsd-9.3-release/sys/dev/mps/mpi/
H A Dmpi2_history.txt187 * Added more pending task bits to RAID Volume Page 0
250 * 05-06-09 02.00.07 Changed task management type of Query Unit Attention to
/freebsd-9.3-release/sys/dev/stge/
H A Dif_stgereg.h661 struct task sc_link_task;

Completed in 511 milliseconds

1234567891011>>