HomeSort by: relevance | last modified time | path
    Searched defs:nextp (Results 1 - 13 of 13) sorted by relevancy

  /src/usr.bin/users/
users.c 61 struct utmpentry *from, *ehead, *save, **nextp; local in function:main
89 for (nextp = &ehead;
90 (*nextp) && strcmp(from->name, (*nextp)->name) > 0;
91 nextp = &(*nextp)->next)
95 save->next = *nextp;
96 *nextp = save;
  /src/lib/libc/db/hash/
page.h 88 BUFHEAD *nextp; member in struct:__anon9d08c6170108
  /src/distrib/utils/more/
linenum.c 165 struct linenum *nextp; local in function:add_lnum
177 nextp = p;
202 new->next = nextp;
207 nextp->prev = new;
214 calcgap(nextp);
  /src/usr.bin/who/
utmpentry.c 186 struct utmpentry **nextp = &ehead; local in function:getutentries
209 *nextp = ep;
210 nextp = &(ep->next);
234 *nextp = ep;
235 nextp = &(ep->next);
246 for (nextp = &ehead;
247 (*nextp) && strcmp(from->line, (*nextp)->line) > 0;
248 nextp = &(*nextp)->next
    [all...]
  /src/usr.bin/rdist/
defs.h 131 struct linkbuf *nextp; member in struct:linkbuf
  /src/sys/dist/pf/net/
pf_if.c 755 struct pfi_kif *p, *nextp; local in function:pfi_get_ifaces
759 for (p = RB_MIN(pfi_ifhead, &pfi_ifs); p; p = nextp) {
760 nextp = RB_NEXT(pfi_ifhead, &pfi_ifs, p);
772 nextp = RB_NEXT(pfi_ifhead, &pfi_ifs, p);
  /src/sbin/ifconfig/
parse.c 565 const struct parser *nextp; local in function:pbranch_match
575 nextp = b->b_nextparser;
577 nextp, nextp ? nextp->p_name : "(null)");
578 if (nextp == NULL) {
588 matchfunc = nextp->p_methods->pm_match;
589 rc = (*matchfunc)(nextp, im, &tmpm, argidx, arg);
594 dbg_warnx("%s: branch %s ok", __func__, nextp->p_name);
603 nextp->p_name)
    [all...]
  /src/sys/dev/pci/ixgbe/
ix_txrx.c 1828 int i, nextp, processed = 0; local in function:ixgbe_rxeof
2012 nextp = ((staterr & IXGBE_RXDADV_NEXTP_MASK) >>
2017 nextp = i + 1;
2018 if (nextp == sc->num_rx_desc)
2019 nextp = 0;
2021 nbuf = &rxr->rx_buffers[nextp];
  /src/usr.bin/deroff/
deroff.c 419 struct chain *nextp; member in struct:getfname::chain
436 for (q = namechain ; q; q = q->nextp)
445 q->nextp = namechain;
  /src/sys/nfs/
nfs_subs.c 962 struct mbuf **nextp = &m1->m_next; local in function:nfsm_disct
971 m2->m_next = *nextp;
972 *nextp = m2;
973 nextp = &m2->m_next;
  /src/lib/libcurses/
curses_private.h 101 struct __window *nextp, *orig; /* Subwindows list and parent. */ member in struct:__window
161 struct __winlist *nextp; /* Next window. */ member in struct:__winlist
  /src/sys/dev/pci/igc/
if_igc.c 2164 int nextp = igc_rxdesc_incr(sc, id); local in function:igc_rxeof
2166 nxbuf = &rxr->rx_buffers[nextp];
  /src/usr.sbin/syslogd/
syslogd.c 3162 struct filed *f, **nextp; local in function:read_config_file
3331 nextp = &f;
3416 *nextp = f;
3417 nextp = &f->f_next;
3431 struct filed *f, *newf, **nextp, *f2; local in function:init
3533 nextp = &newf;
3538 *nextp = (struct filed *)calloc(1, sizeof(*f));
3539 cfline(0, "*.ERR\t/dev/console", *nextp, "*", "*");
3540 (*nextp)->f_next = (struct filed *)calloc(1, sizeof(*f));
3541 cfline(0, "*.PANIC\t*", (*nextp)->f_next, "*", "*")
    [all...]

Completed in 58 milliseconds