Searched refs:SLIST_FIRST (Results 1 - 25 of 134) sorted by relevance

123456

/freebsd-12-stable/lib/libgssapi/
H A Dgss_release_cred.c47 while (SLIST_FIRST(&cred->gc_mc)) {
48 mc = SLIST_FIRST(&cred->gc_mc);
H A Dgss_release_name.c48 while (SLIST_FIRST(&name->gn_mn)) {
50 mn = SLIST_FIRST(&name->gn_mn);
H A Dgss_export_name.c52 mn = SLIST_FIRST(&name->gn_mn);
H A Dgss_acquire_cred.c161 if (!SLIST_FIRST(&cred->gc_mc)) {
/freebsd-12-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_symbol.c214 curnode = SLIST_FIRST(symlist);
256 curnode = SLIST_FIRST(symlist);
303 node1 = SLIST_FIRST(symlist);
319 while((node = SLIST_FIRST(symlist_src2)) != NULL) {
568 while (SLIST_FIRST(&masks) != NULL) {
571 curnode = SLIST_FIRST(&masks);
574 regnode = SLIST_FIRST(&curnode->symbol->info.finfo->symrefs);
581 while (SLIST_FIRST(&aliases) != NULL) {
584 curnode = SLIST_FIRST(&aliases);
593 while (SLIST_FIRST(
[all...]
H A Daicasm.c219 for (include_dir = SLIST_FIRST(&search_path);
278 if (SLIST_FIRST(&scope_stack) == NULL
279 || SLIST_FIRST(&scope_stack)->type != SCOPE_ROOT) {
285 process_scope(SLIST_FIRST(&scope_stack));
292 dump_scope(SLIST_FIRST(&scope_stack));
400 for (cur_node = SLIST_FIRST(&patch_functions);
549 for (func_count = 0, cur_func = SLIST_FIRST(&patch_functions);
570 for (cur_func = SLIST_FIRST(&patch_functions);
776 if (SLIST_FIRST(&scope_stack) != NULL) {
777 TAILQ_INSERT_TAIL(&SLIST_FIRST(
[all...]
/freebsd-12-stable/sys/sys/
H A Dqueue.h220 QUEUE_TYPEOF(type) *curelm = SLIST_FIRST(head1); \
222 if ((SLIST_FIRST(head1) = SLIST_FIRST(head2)) != NULL) \
224 } else if (SLIST_FIRST(head2) != NULL) { \
227 SLIST_NEXT(curelm, field) = SLIST_FIRST(head2); \
234 #define SLIST_FIRST(head) ((head)->slh_first) macro
237 for ((var) = SLIST_FIRST((head)); \
242 for ((var) = ((var) ? (var) : SLIST_FIRST((head))); \
247 for ((var) = SLIST_FIRST((head)); \
252 for ((var) = ((var) ? (var) : SLIST_FIRST((hea
[all...]
/freebsd-12-stable/usr.sbin/pmc/
H A Dpmc_util.c97 pt = SLIST_FIRST(&args->pa_targets);
112 pt = SLIST_FIRST(&args->pa_targets);
/freebsd-12-stable/contrib/openbsm/compat/
H A Dqueue.h158 #define SLIST_FIRST(head) ((head)->slh_first) macro
161 for ((var) = SLIST_FIRST((head)); \
166 for ((var) = SLIST_FIRST((head)); \
171 for ((varp) = &SLIST_FIRST((head)); \
176 SLIST_FIRST((head)) = NULL; \
185 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
186 SLIST_FIRST((head)) = (elm); \
192 if (SLIST_FIRST((head)) == (elm)) { \
196 struct type *curelm = SLIST_FIRST((head)); \
206 SLIST_FIRST((hea
[all...]
/freebsd-12-stable/sys/netpfil/pf/
H A Dpf_osfp.c252 while ((fp = SLIST_FIRST(&V_pf_osfp_list))) {
254 while ((entry = SLIST_FIRST(&fp->fp_oses))) {
520 SLIST_FIRST(&f2->fp_oses)->fp_class_nm,
521 SLIST_FIRST(&f2->fp_oses)->fp_version_nm,
522 SLIST_FIRST(&f2->fp_oses)->fp_subtype_nm,
523 SLIST_FIRST(&f->fp_oses)->fp_class_nm,
524 SLIST_FIRST(&f->fp_oses)->fp_version_nm,
525 SLIST_FIRST(&f->fp_oses)->fp_subtype_nm);
528 SLIST_FIRST(&f->fp_oses)->fp_class_nm,
529 SLIST_FIRST(
[all...]
/freebsd-12-stable/contrib/dma/
H A Daliases_parse.y74 SLIST_FIRST(&al->dests) = $3;
/freebsd-12-stable/lib/libc/tests/sys/
H A Dqueue_test.c73 printf("Ensuring SLIST_FIRST returns element 1\n");
74 ATF_REQUIRE_EQ(SLIST_FIRST(&head), n1);
110 printf("Ensuring SLIST_FIRST returns element 1\n");
111 ATF_REQUIRE_EQ(SLIST_FIRST(&head), n1);
115 printf("Ensuring SLIST_FIRST now returns element 2\n");
116 ATF_REQUIRE_EQ(SLIST_FIRST(&head), n2);
142 printf("Ensuring SLIST_FIRST returns element 2\n");
143 ATF_REQUIRE_EQ(SLIST_FIRST(&head), n2);
/freebsd-12-stable/sys/mips/malta/
H A Duart_bus_maltausart.c83 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs);
/freebsd-12-stable/bin/pkill/
H A Dpkill.c416 if (SLIST_FIRST(&ruidlist) != NULL && li == NULL) {
424 if (SLIST_FIRST(&rgidlist) != NULL && li == NULL) {
432 if (SLIST_FIRST(&euidlist) != NULL && li == NULL) {
440 if (SLIST_FIRST(&ppidlist) != NULL && li == NULL) {
448 if (SLIST_FIRST(&pgrplist) != NULL && li == NULL) {
460 if (SLIST_FIRST(&tdevlist) != NULL && li == NULL) {
468 if (SLIST_FIRST(&sidlist) != NULL && li == NULL) {
481 if (SLIST_FIRST(&jidlist) != NULL && li == NULL) {
494 if (SLIST_FIRST(&classlist) != NULL && li == NULL) {
/freebsd-12-stable/lib/libthr/thread/
H A Dthr_sleepq.c152 td->sleepqueue = SLIST_FIRST(&sq->sq_freeq);
176 sq2 = SLIST_FIRST(&sq->sq_freeq);
/freebsd-12-stable/sys/mips/atheros/ar531x/
H A Duart_bus_ar5315.c76 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs);
/freebsd-12-stable/sys/mips/atheros/
H A Duart_bus_ar71xx.c78 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs);
H A Duart_bus_ar933x.c83 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs);
/freebsd-12-stable/sys/mips/cavium/
H A Duart_bus_octeonusart.c100 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs);
/freebsd-12-stable/contrib/nvi/common/
H A Dseq.c157 if (qp == SLIST_FIRST(sp->gp->seqq))
223 for (qp = SLIST_FIRST(sp->gp->seqq); qp != NULL;
288 while ((qp = SLIST_FIRST(gp->seqq)) != NULL) {
H A Dcut.c206 if (cbp == SLIST_FIRST(sp->gp->cutq))
277 while ((cbp = SLIST_FIRST(gp->cutq)) != NULL) {
/freebsd-12-stable/sys/dev/nand/
H A Dnandsim_swap.c122 blk_space = SLIST_FIRST(&swap->free_bs);
129 blk_space = SLIST_FIRST(&swap->free_bs);
338 blk_space = SLIST_FIRST(&swap->free_bs);
/freebsd-12-stable/sys/netinet/libalias/
H A Dalias_mod.c166 t = SLIST_FIRST(&dll_chain);
/freebsd-12-stable/contrib/bsnmp/snmpd/
H A Dtrap.c656 return (SLIST_FIRST(&target_addresslist));
686 if ((prev = SLIST_FIRST(&target_addresslist)) == NULL ||
757 return (SLIST_FIRST(&target_paramlist));
785 if ((prev = SLIST_FIRST(&target_paramlist)) == NULL ||
822 return (SLIST_FIRST(&target_notifylist));
850 if ((prev = SLIST_FIRST(&target_notifylist)) == NULL ||
891 while ((addrs = SLIST_FIRST(&target_addresslist)) != NULL) {
899 while ((param = SLIST_FIRST(&target_paramlist)) != NULL) {
905 while ((notify = SLIST_FIRST(&target_notifylist)) != NULL) {
/freebsd-12-stable/sys/kern/
H A Dkern_et.c85 SLIST_FIRST(&eventtimers)->et_quality < et->et_quality) {
252 if (et != SLIST_FIRST(&eventtimers))

Completed in 109 milliseconds

123456