Home
last modified time | relevance | path

Searched refs:h_next (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/less/
H A Difile.c27 struct ifile *h_next; /* Links for command line list */ member
56 for (; p != &anchor; p = p->h_next) in incr_index()
70 p->h_next = prev->h_next; in link_ifile()
72 prev->h_next->h_prev = p; in link_ifile()
73 prev->h_next = p; in link_ifile()
79 incr_index(p->h_next, 1); in link_ifile()
88 p->h_next->h_prev = p->h_prev; in unlink_ifile()
89 p->h_prev->h_next = p->h_next; in unlink_ifile()
[all...]
/freebsd/sys/kern/
H A Dkern_khelp.c101 TAILQ_FOREACH(tmph, &helpers, h_next) { in khelp_register_helper()
103 TAILQ_INSERT_BEFORE(tmph, h, h_next); in khelp_register_helper()
110 TAILQ_INSERT_TAIL(&helpers, h, h_next); in khelp_register_helper()
128 TAILQ_FOREACH(tmph, &helpers, h_next) { in khelp_deregister_helper()
130 TAILQ_REMOVE(&helpers, h, h_next); in khelp_deregister_helper()
159 TAILQ_FOREACH(h, &helpers, h_next) { in khelp_init_osd()
174 TAILQ_FOREACH(h, &helpers, h_next) { in khelp_init_osd()
201 TAILQ_FOREACH(h, &helpers, h_next) in khelp_destroy_osd()
244 TAILQ_FOREACH(h, &helpers, h_next) { in khelp_get_id()
294 TAILQ_FOREACH(h, &helpers, h_next) { in khelp_new_hhook_registered()
/freebsd/contrib/libedit/
H A Dhistory.c103 history_gfun_t h_next; /* Get the next element */ in TYPE() local
114 #define HNEXT(h, ev) (*(h)->h_next)((h)->h_ref, ev)
618 h->h_next = history_def_next; in TYPE()
641 if (h->h_next == history_def_next) in FUN()
656 if (h->h_next != history_def_next) { in history_setsize()
675 if (h->h_next != history_def_next) { in history_getsize()
695 if (h->h_next != history_def_next) { in history_setunique()
710 if (h->h_next != history_def_next) { in history_getunique()
727 if (nh->h_first == NULL || nh->h_next == NULL || nh->h_last == NULL || in history_set_fun()
731 if (h->h_next != history_def_next) { in history_set_fun()
[all …]
/freebsd/cddl/contrib/opensolaris/common/ctf/
H A Dctf_hash.c120 hep->h_next = hp->h_buckets[h]; in ctf_hash_insert()
154 for (i = hp->h_buckets[h]; i != 0; i = hep->h_next) { in ctf_hash_lookup()
H A Dctf_impl.h69 uint_t h_next; /* index of next element in hash chain */ member
/freebsd/sys/dev/usb/controller/
H A Duhci.c519 qh_x->h_next = NULL; in uhci_init()
536 qh_intr->h_next = qh_ls; in uhci_init()
564 qh_ls->h_next = qh_fs; in uhci_init()
579 qh_ctl->h_next = qh_blk; in uhci_init()
587 qh_blk->h_next = qh_lst; in uhci_init()
595 qh_lst->h_next = 0; in uhci_init()
793 temp = ((((sqh->h_next != NULL) && !(qh_h_next & UHCI_PTR_T)) ? 1 : 0) | in uhci_dump_qh()
927 sqh->h_next = last->h_next; in _uhci_append_qh()
940 last->h_next = sqh; in _uhci_append_qh()
980 sqh->h_prev->h_next = sqh->h_next; in _uhci_remove_qh()
[all …]
H A Duhci.h146 struct uhci_qh *h_next; member
/freebsd/usr.sbin/config/
H A Dmain.cc100 struct hdr_list *h_next; member
674 for (hl = htab; hl != NULL; hl = hl->h_next) { in cleanheaders()
705 for (hl = htab; hl != NULL; hl = hl->h_next) { in remember()
715 hl->h_next = htab; in remember()
/freebsd/sys/sys/
H A Dmodule_khelp.h60 TAILQ_ENTRY(helper) h_next;