Searched refs:tq (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace_glue.c948 taskq_dispatch(taskq_t *tq, task_func_t func, void *arg, uint_t flags) argument
951 thread_call_setup( (thread_call_t) tq, (thread_call_func_t)_taskq_apply, (thread_call_param_t)func );
952 thread_call_enter1( (thread_call_t) tq, (thread_call_param_t)arg );
953 return (taskqid_t) tq /* for lack of anything better */;
957 taskq_destroy(taskq_t *tq) argument
959 thread_call_cancel( (thread_call_t) tq );
960 thread_call_free( (thread_call_t) tq );
/darwin-on-arm/xnu/bsd/kern/
H A Dtty.c1304 struct clist tq; local
1307 tq = tp->t_rawq;
1309 tp->t_canq = tq;
1912 struct clist tq; local
1919 tq = tp->t_rawq;
1922 while ((c = getc(&tq)) >= 0)
H A Dtty_ptmx.c1003 struct clist tq; local
1008 tq = tp->t_rawq;
1011 while ((c = getc(&tq)) >= 0)
H A Dkern_event.c2651 struct kqtailq *tq = kn->kn_tq; local
2654 TAILQ_INSERT_TAIL(tq, kn, kn_tqe);
2667 struct kqtailq *tq = kn->kn_tq; local
2669 TAILQ_REMOVE(tq, kn, kn_tqe);
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_resident.c4574 struct vm_pageout_queue *tq; local
4683 tq = NULL;
4687 tq = iq;
4689 tq = eq;
4691 if (tq != NULL) {
4701 tq->pgo_throttled = TRUE;
4705 assert_wait_timeout((event_t) &tq->pgo_laundry, THREAD_INTERRUPTIBLE, 1000, 1000*NSEC_PER_USEC);

Completed in 129 milliseconds