Searched refs:tqp (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/nvi/ex/
H A Dex_tag.c91 TAGQ *tqp; local
121 if ((tqp = ctag_slist(sp, exp->tag_last)) == NULL)
124 if (tagq_push(sp, tqp, F_ISSET(cmdp, E_NEWSCREEN),
142 TAGQ *tqp; local
147 if ((tqp = TAILQ_FIRST(exp->tq)) == NULL) {
151 if ((tp = TAILQ_NEXT(tqp->current, q)) == NULL) {
157 tqp->current = tp;
159 if (F_ISSET(tqp, TAG_CSCOPE))
160 (void)cscope_search(sp, tqp, tp);
162 (void)ctag_search(sp, tp->search, tp->slen, tqp
182 TAGQ *tqp; local
309 TAGQ *tqp, *dtqp; local
411 TAGQ *tqp; local
464 TAGQ *tqp; local
540 TAGQ *aqp, *tqp; local
608 TAGQ *tqp; local
680 tagq_free(SCR *sp, TAGQ *tqp) argument
705 tagq_push(SCR *sp, TAGQ *tqp, int new_screen, int force) argument
886 TAGQ *tqp; local
971 TAGQ *tqp; local
1024 ctag_sfile(SCR *sp, TAGF *tfp, TAGQ *tqp, char *tname) argument
[all...]
H A Dex_cscope.c455 TAGQ *rtqp, *tqp; local
492 if ((tqp = create_cs_cmd(sp, np, &search)) == NULL)
516 (void)fprintf(csc->to_fp, "%lu%s\n", search, tqp->tag + 2);
520 if (parse(sp, csc, tqp, &matches))
528 tagq_free(sp, tqp);
535 if (ex_tag_Nswitch(sp, tqp->current, force))
542 if (ex_tag_nswitch(sp, tqp->current, force))
556 TAILQ_INSERT_HEAD(exp->tq, tqp, q);
558 (void)cscope_search(sp, tqp, tqp
597 TAGQ *tqp; local
664 parse(SCR *sp, CSC *csc, TAGQ *tqp, int *matchesp) argument
1001 cscope_search(SCR *sp, TAGQ *tqp, TAG *tp) argument
[all...]
/freebsd-13-stable/sys/sys/
H A Dtaskqueue.h78 int taskqueue_start_threads(struct taskqueue **tqp, int count, int pri,
80 int taskqueue_start_threads_in_proc(struct taskqueue **tqp, int count,
82 int taskqueue_start_threads_cpuset(struct taskqueue **tqp, int count,
/freebsd-13-stable/sys/kern/
H A Dsubr_taskqueue.c664 _taskqueue_start_threads(struct taskqueue **tqp, int count, int pri, argument
676 tq = *tqp;
687 error = kthread_add(taskqueue_thread_loop, tqp, p,
690 error = kthread_add(taskqueue_thread_loop, tqp, p,
732 taskqueue_start_threads(struct taskqueue **tqp, int count, int pri, argument
739 error = _taskqueue_start_threads(tqp, count, pri, NULL, NULL, name, ap);
745 taskqueue_start_threads_in_proc(struct taskqueue **tqp, int count, int pri, argument
752 error = _taskqueue_start_threads(tqp, count, pri, NULL, proc, name, ap);
758 taskqueue_start_threads_cpuset(struct taskqueue **tqp, int count, int pri, argument
765 error = _taskqueue_start_threads(tqp, coun
785 struct taskqueue **tqp, *tq; local
823 struct taskqueue **tqp, *tq; local
[all...]
H A Dsubr_gtaskqueue.c449 _gtaskqueue_start_threads(struct gtaskqueue **tqp, int count, int pri, argument
461 tq = *tqp;
472 error = kthread_add(gtaskqueue_thread_loop, tqp, NULL,
475 error = kthread_add(gtaskqueue_thread_loop, tqp, NULL,
512 gtaskqueue_start_threads(struct gtaskqueue **tqp, int count, int pri, argument
519 error = _gtaskqueue_start_threads(tqp, count, pri, NULL, name, ap);
539 struct gtaskqueue **tqp, *tq; local
541 tqp = arg;
542 tq = *tqp;
577 struct gtaskqueue **tqp, *t local
[all...]
/freebsd-13-stable/sys/contrib/ipfilter/netinet/
H A Dip_state.c4646 /* tqp(I) - pointer to an array of timeout queues for TCP */
4651 ipf_sttab_init(softc, tqp)
4653 ipftq_t *tqp;
4658 IPFTQ_INIT(&tqp[i], 0, "ipftq tcp tab");
4659 tqp[i].ifq_next = tqp + i + 1;
4661 tqp[IPF_TCP_NSTATES - 1].ifq_next = NULL;
4662 tqp[IPF_TCPS_CLOSED].ifq_ttl = softc->ipf_tcpclosed;
4663 tqp[IPF_TCPS_LISTEN].ifq_ttl = softc->ipf_tcptimeout;
4664 tqp[IPF_TCPS_SYN_SEN
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_taskq.c51 #define taskqueue_start_threads_in_proc(tqp, count, pri, proc, name, ...) \
52 taskqueue_start_threads(tqp, count, pri, name, __VA_ARGS__)

Completed in 95 milliseconds