Searched refs:l_next (Results 1 - 20 of 20) sorted by relevance

/freebsd-10-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_util.c34 * An additional ctf_list_t is used to store the head (l_next) and tail
46 q->l_next = NULL;
49 p->l_next = q;
51 lp->l_next = q;
62 ctf_list_t *q = lp->l_next; /* q = head list element */
64 lp->l_next = p;
66 p->l_next = q;
84 p->l_prev->l_next = p->l_next;
86 lp->l_next
[all...]
H A Dctf_impl.h109 struct ctf_list *l_next; /* next pointer or head pointer */ member in struct:ctf_list
293 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
/freebsd-10-stable/cddl/contrib/opensolaris/tools/ctf/common/
H A Dlist.c42 struct list *l_next; member in struct:list
53 le->l_next = *list;
63 for (nextp = list; *nextp; nextp = &((*nextp)->l_next)) {
88 for (le = *list, le2 = list; le; le2 = &le->l_next, le = le->l_next) {
90 *le2 = le->l_next;
107 list = list->l_next;
126 lnext = list->l_next;
158 for (; list; list = list->l_next) {
177 for (l = *list1, last = NULL; l; last = l, l = l->l_next)
[all...]
/freebsd-10-stable/usr.bin/col/
H A Dcol.c92 LINE *l_next; /* next line */ member in struct:line_str
287 lnew->l_next = l;
301 if (l->l_next == NULL) {
302 l->l_next = alloc_line();
303 l->l_next->l_prev = l;
305 l = l->l_next;
353 for (; l->l_next; l = l->l_next)
377 lines = l->l_next;
382 if (l->l_line || l->l_next)
[all...]
/freebsd-10-stable/contrib/gdb/gdb/
H A Dsolib-legacy.c68 lmo.l_next_offset = offsetof (struct link_map, l_next);
69 lmo.l_next_size = fieldsize (struct link_map, l_next);
120 lmo32.l_next_offset = offsetof (struct link_map32, l_next);
121 lmo32.l_next_size = fieldsize (struct link_map32, l_next);
/freebsd-10-stable/sys/sys/
H A Dlink_elf.h64 struct link_map *l_next, *l_prev; /* linked list of of mapped libs */ member in struct:link_map
/freebsd-10-stable/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dt_dlinfo.c102 for (; map->l_next; map = map->l_next)
/freebsd-10-stable/libexec/revnetgroup/
H A Dparse_netgroup.c61 struct linelist *l_next; /* Chain ptr. */ member in struct:linelist
144 lp = lp->l_next;
190 lp = lp->l_next;
349 lp->l_next = linehead;
/freebsd-10-stable/lib/libc/gen/
H A Dgetnetgrent.c111 struct linelist *l_next; /* Chain ptr. */ member in struct:linelist
246 lp = lp->l_next;
433 lp = lp->l_next;
644 lp->l_next = linehead;
/freebsd-10-stable/sys/cddl/dev/fbt/
H A Dfbt_powerpc.c800 struct ctf_list *l_next; /* next pointer or head pointer */ member in struct:ctf_list
804 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
836 * An additional ctf_list_t is used to store the head (l_next) and tail
848 q->l_next = NULL;
851 p->l_next = q;
853 lp->l_next = q;
864 ctf_list_t *q = lp->l_next; /* q = head list element */
866 lp->l_next = p;
868 p->l_next = q;
H A Dfbt.c870 struct ctf_list *l_next; /* next pointer or head pointer */ member in struct:ctf_list
874 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
906 * An additional ctf_list_t is used to store the head (l_next) and tail
918 q->l_next = NULL;
921 p->l_next = q;
923 lp->l_next = q;
934 ctf_list_t *q = lp->l_next; /* q = head list element */
936 lp->l_next = p;
938 p->l_next = q;
/freebsd-10-stable/sys/dev/cy/
H A Dcy.c165 struct lbq *l_next; /* next in queue */ member in struct:lbq
1057 qp = com->obufq.l_next;
1059 qp = qp->l_next;
1063 com->obufq.l_next = qp;
1724 com->obufs[0].l_next = NULL;
1729 qp = com->obufq.l_next;
1730 while ((next = qp->l_next) != NULL)
1732 qp->l_next = &com->obufs[0];
1736 com->obufq.l_next = &com->obufs[0];
1756 com->obufs[1].l_next
[all...]
/freebsd-10-stable/sys/dev/sio/
H A Dsio.c165 struct lbq *l_next; /* next in queue */ member in struct:lbq
1650 qp = com->obufq.l_next;
1652 qp = qp->l_next;
1656 com->obufq.l_next = qp;
2041 com->obufs[0].l_next = NULL;
2045 qp = com->obufq.l_next;
2046 while ((next = qp->l_next) != NULL)
2048 qp->l_next = &com->obufs[0];
2052 com->obufq.l_next = &com->obufs[0];
2061 com->obufs[1].l_next
[all...]
/freebsd-10-stable/sys/kern/
H A Dlink_elf.c288 l->l_next = NULL;
297 prev->l_next != NULL;
298 prev = prev->l_next)
301 prev->l_next = l;
310 if ((r_debug.r_map = l->l_next) != NULL)
311 l->l_next->l_prev = NULL;
314 if ((l->l_prev->l_next = l->l_next) != NULL)
315 l->l_next->l_prev = l->l_prev;
/freebsd-10-stable/usr.sbin/ctld/
H A Dctld.c120 TAILQ_FOREACH_SAFE(lun, &conf->conf_luns, l_next, ltmp)
1401 TAILQ_INSERT_TAIL(&conf->conf_luns, lun, l_next);
1420 TAILQ_REMOVE(&lun->l_conf->conf_luns, lun, l_next);
1438 TAILQ_FOREACH(lun, &conf->conf_luns, l_next) {
1619 TAILQ_FOREACH(lun, &conf->conf_luns, l_next) {
1677 TAILQ_FOREACH(lun2, &lun->l_conf->conf_luns, l_next) {
1706 TAILQ_FOREACH(lun, &conf->conf_luns, l_next) {
1904 TAILQ_FOREACH_SAFE(oldlun, &oldconf->conf_luns, l_next, tmplun) {
1978 TAILQ_FOREACH_SAFE(newlun, &newconf->conf_luns, l_next, tmplun) {
H A Dctld.h163 TAILQ_ENTRY(lun) l_next; member in struct:lun
/freebsd-10-stable/sys/pc98/cbus/
H A Dsio.c229 struct lbq *l_next; /* next in queue */ member in struct:lbq
2559 qp = com->obufq.l_next;
2561 qp = qp->l_next;
2565 com->obufq.l_next = qp;
3097 com->obufs[0].l_next = NULL;
3101 qp = com->obufq.l_next;
3102 while ((next = qp->l_next) != NULL)
3104 qp->l_next = &com->obufs[0];
3108 com->obufq.l_next = &com->obufs[0];
3121 com->obufs[1].l_next
[all...]
/freebsd-10-stable/libexec/rtld-elf/
H A Drtld.c3680 prev->l_next != NULL && prev->l_next != &obj_rtld.linkmap;
3681 prev = prev->l_next)
3686 l->l_next = prev->l_next;
3687 if (l->l_next != NULL)
3688 l->l_next->l_prev = l;
3689 prev->l_next = l;
3698 if ((r_debug.r_map = l->l_next) != NULL)
3699 l->l_next
[all...]
/freebsd-10-stable/sys/geom/raid/
H A Dg_raid.h126 LIST_ENTRY(g_raid_lock) l_next; member in struct:g_raid_lock
H A Dg_raid.c1190 LIST_FOREACH(lp, &vol->v_locks, l_next) {
1249 LIST_FOREACH(lp, &vol->v_locks, l_next) {
1308 LIST_INSERT_HEAD(&vol->v_locks, lp, l_next);
1343 LIST_FOREACH(lp, &vol->v_locks, l_next) {
1345 LIST_REMOVE(lp, l_next);

Completed in 334 milliseconds