Searched refs:TAILQ_EMPTY (Results 1 - 25 of 257) sorted by relevance

1234567891011

/freebsd-12-stable/sys/sys/
H A Dselinfo.h53 #define SEL_WAITING(si) (!TAILQ_EMPTY(&(si)->si_tdlist))
/freebsd-12-stable/contrib/ngatm/libngatm/
H A Dsscopcust.h108 #define MSGQ_EMPTY(Q) TAILQ_EMPTY(Q)
114 #define MSGQ_PEEK(Q) (TAILQ_EMPTY((Q)) ? NULL : TAILQ_FIRST((Q)))
119 if(!TAILQ_EMPTY(Q)) { \
146 #define SIGQ_EMPTY(Q) TAILQ_EMPTY(Q)
151 if(!TAILQ_EMPTY(Q)) { \
162 while(!TAILQ_EMPTY(F)) { \
173 while(!TAILQ_EMPTY(F)) { \
H A Dsscfucust.h76 if(!TAILQ_EMPTY(Q)) { \
/freebsd-12-stable/contrib/nvi/ex/
H A Dex_display.c99 if (!TAILQ_EMPTY(cbp->textq))
108 if (!TAILQ_EMPTY(cbp->textq))
/freebsd-12-stable/sys/security/audit/
H A Daudit_trigger.c88 while (!TAILQ_EMPTY(&trigger_list)) {
105 while (TAILQ_EMPTY(&trigger_list)) {
/freebsd-12-stable/sys/kern/
H A Dsubr_turnstile.c481 MPASS(TAILQ_EMPTY(&ts->ts_blocked[TS_EXCLUSIVE_QUEUE]));
482 MPASS(TAILQ_EMPTY(&ts->ts_blocked[TS_SHARED_QUEUE]));
483 MPASS(TAILQ_EMPTY(&ts->ts_pending));
746 KASSERT(TAILQ_EMPTY(&ts->ts_pending),
748 KASSERT(TAILQ_EMPTY(&ts->ts_blocked[TS_EXCLUSIVE_QUEUE]),
750 KASSERT(TAILQ_EMPTY(&ts->ts_blocked[TS_SHARED_QUEUE]),
835 empty = TAILQ_EMPTY(&ts->ts_blocked[TS_EXCLUSIVE_QUEUE]) &&
836 TAILQ_EMPTY(&ts->ts_blocked[TS_SHARED_QUEUE]);
935 MPASS(!TAILQ_EMPTY(&ts->ts_pending));
944 if (TAILQ_EMPTY(
[all...]
H A Dsubr_autoconf.c161 while (!TAILQ_EMPTY(&intr_config_hook_list)) {
/freebsd-12-stable/sys/dev/drm/
H A Ddrm_fops.c80 priv->master = TAILQ_EMPTY(&dev->files);
/freebsd-12-stable/sys/tests/framework/
H A Dkern_testfrwk.c153 if (!TAILQ_EMPTY(&kfrwk.kfrwk_testlist)) {
212 if (!TAILQ_EMPTY(&kfrwk.kfrwk_testq)) {
292 if (!TAILQ_EMPTY(&kfrwk.kfrwk_testq)) {
317 if (TAILQ_EMPTY(&kfrwk.kfrwk_testlist)) {
/freebsd-12-stable/sys/netinet/
H A Dsctp_ss_functions.c86 while (!TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
126 if (!TAILQ_EMPTY(&strq->outqueue) &&
141 if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
160 if (TAILQ_EMPTY(&strq->outqueue) &&
313 if (!TAILQ_EMPTY(&strq->outqueue) &&
316 if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
404 while (!TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
455 if (!TAILQ_EMPTY(&strq->outqueue) &&
458 if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) {
490 if (TAILQ_EMPTY(
[all...]
H A Dsctp_timer.c445 TAILQ_EMPTY(&asoc->strmout[chk->rec.data.sid].outqueue)) {
692 if (TAILQ_EMPTY(&stcb->asoc.send_queue)) {
1180 if (TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) {
1370 if (!TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) {
1385 if ((TAILQ_EMPTY(&stcb->asoc.send_queue)) &&
1386 (TAILQ_EMPTY(&stcb->asoc.sent_queue))) {
1435 (TAILQ_EMPTY(&stcb->asoc.send_queue)) &&
1436 (TAILQ_EMPTY(&stcb->asoc.sent_queue))) {
1557 if (TAILQ_EMPTY(&asoc->send_queue) &&
1558 TAILQ_EMPTY(
[all...]
/freebsd-12-stable/usr.sbin/nscd/
H A Dcacheplcs.c229 while (!TAILQ_EMPTY(&queue_policy->head)) {
449 if (!TAILQ_EMPTY(&(lfu_policy->groups[i]))) {
469 if (!TAILQ_EMPTY(&(lfu_policy->groups[i]))) {
494 if (!TAILQ_EMPTY(&(lfu_policy->groups[i]))) {
521 if (!TAILQ_EMPTY(&(lfu_policy->groups[i]))) {
580 while (!TAILQ_EMPTY(&(lfu_policy->groups[i]))) {
/freebsd-12-stable/sys/geom/
H A Dgeom_event.c91 while (!TAILQ_EMPTY(&g_events))
106 while (!TAILQ_EMPTY(&g_events)) {
302 "-", TAILQ_EMPTY(&g_doorstep) ? 0 : hz / 10);
343 if (TAILQ_EMPTY(&g_events))
/freebsd-12-stable/sys/netgraph/atm/sscop/
H A Dng_sscop_cust.h142 #define MSGQ_EMPTY(Q) TAILQ_EMPTY(Q)
184 #define SIGQ_EMPTY(Q) TAILQ_EMPTY(Q)
203 while (!TAILQ_EMPTY(F)) { \
214 while (!TAILQ_EMPTY(F)) { \
/freebsd-12-stable/contrib/openbsm/bin/auditdistd/
H A Dauditdistd.h245 _wakeup = TAILQ_EMPTY(list); \
255 _wakeup = TAILQ_EMPTY(tolist); \
268 while (TAILQ_EMPTY(list)) \
/freebsd-12-stable/contrib/nvi/common/
H A Dcut.c278 if (!TAILQ_EMPTY(cbp->textq))
286 if (!TAILQ_EMPTY(cbp->textq))
H A Dscreen.c171 if (!TAILQ_EMPTY(sp->tiq))
225 if (!TAILQ_EMPTY(gp->hq)) {
/freebsd-12-stable/sys/net/altq/
H A Daltq_var.h155 #ifndef TAILQ_EMPTY
156 #define TAILQ_EMPTY(head) ((head)->tqh_first == NULL) macro
/freebsd-12-stable/usr.sbin/bluetooth/btpand/
H A Devent.c111 while (!TAILQ_EMPTY(&pending)) {
156 while (!TAILQ_EMPTY(&current)) {
/freebsd-12-stable/usr.sbin/rtsold/
H A Drtsol.c604 if (TAILQ_EMPTY(&sm_dnssl_head)) {
670 if (!TAILQ_EMPTY(sm_dnssl_head)) {
684 if (!TAILQ_EMPTY(sm_rdnss_head))
695 if (!TAILQ_EMPTY(sm_rdnss_head)) {
701 if (!TAILQ_EMPTY(sm_dnssl_head)) {
/freebsd-12-stable/sys/cam/scsi/
H A Dscsi_target.c311 if (!TAILQ_EMPTY(&softc->user_ccb_queue) ||
312 !TAILQ_EMPTY(&softc->abort_queue)) {
354 retval = !TAILQ_EMPTY(&softc->user_ccb_queue) ||
355 !TAILQ_EMPTY(&softc->abort_queue);
781 if (TAILQ_EMPTY(&softc->pending_ccb_queue))
1061 if (!TAILQ_EMPTY(&softc->user_ccb_queue)
1062 || !TAILQ_EMPTY(&softc->abort_queue)) {
/freebsd-12-stable/sys/dev/nvd/
H A Dnvd.c175 while (!TAILQ_EMPTY(&ctrlr->disk_head))
272 if (TAILQ_EMPTY(&ndisk->ctrlr->disk_head))
504 while (!TAILQ_EMPTY(&ctrlr->disk_head))
/freebsd-12-stable/sys/dev/virtio/balloon/
H A Dvirtio_balloon.c381 KASSERT((TAILQ_EMPTY(&sc->vtballoon_pages) &&
383 (!TAILQ_EMPTY(&sc->vtballoon_pages) &&
424 while (!TAILQ_EMPTY(&sc->vtballoon_pages))
/freebsd-12-stable/libexec/rtld-elf/
H A Dlibmap.c322 while (!TAILQ_EMPTY(lml)) {
339 while (!TAILQ_EMPTY(&lmc_head)) {
346 while (!TAILQ_EMPTY(&lmp_head)) {
/freebsd-12-stable/usr.sbin/ctld/
H A Dctld.c135 assert(TAILQ_EMPTY(&conf->conf_ports));
324 if (TAILQ_EMPTY(&ag->ag_names))
424 if (TAILQ_EMPTY(&ag->ag_portals))
936 if (TAILQ_EMPTY(&conf->conf_targets) ||
937 TAILQ_EMPTY(&conf->conf_portal_groups))
947 if (oldisns == NULL || TAILQ_EMPTY(&oldisns->i_conf->conf_targets))
962 if (TAILQ_EMPTY(&conf->conf_targets) ||
963 TAILQ_EMPTY(&conf->conf_portal_groups))
989 if (TAILQ_EMPTY(&conf->conf_targets) ||
990 TAILQ_EMPTY(
[all...]

Completed in 296 milliseconds

1234567891011