Home
last modified time | relevance | path

Searched refs:l_next (Results 1 – 10 of 10) sorted by relevance

/dragonfly/contrib/binutils-2.34/libctf/
H A Dctf-util.c37 q->l_next = NULL; in ctf_list_append()
40 p->l_next = q; in ctf_list_append()
42 lp->l_next = q; in ctf_list_append()
52 ctf_list_t *q = lp->l_next; /* q = head list element. */ in ctf_list_prepend()
54 lp->l_next = p; in ctf_list_prepend()
56 p->l_next = q; in ctf_list_prepend()
73 p->l_prev->l_next = p->l_next; in ctf_list_delete()
75 lp->l_next = p->l_next; in ctf_list_delete()
77 if (p->l_next != NULL) in ctf_list_delete()
78 p->l_next->l_prev = p->l_prev; in ctf_list_delete()
[all …]
H A Dctf-impl.h118 struct ctf_list *l_next; /* Next pointer or head pointer. */ member
395 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
/dragonfly/usr.bin/col/
H A Dcol.c80 LINE *l_next; /* next line */ member
260 lnew->l_next = l; in main()
274 if (l->l_next == NULL) { in main()
276 l->l_next->l_prev = l; in main()
278 l = l->l_next; in main()
326 for (; l->l_next; l = l->l_next) in main()
350 lines = l->l_next; in flush_lines()
540 l->l_next = l + 1; in alloc_line()
541 l->l_next = NULL; in alloc_line()
544 line_freelist = l->l_next; in alloc_line()
[all …]
/dragonfly/libexec/revnetgroup/
H A Dparse_netgroup.c58 struct linelist *l_next; /* Chain ptr. */ member
141 lp = lp->l_next; in __endnetgrent()
187 lp = lp->l_next; in parse_netgrp()
346 lp->l_next = linehead; in read_for_group()
/dragonfly/lib/libc/gen/
H A Dgetnetgrent.c109 struct linelist *l_next; /* Chain ptr. */ member
243 lp = lp->l_next;
428 lp = lp->l_next;
611 lp->l_next = linehead;
/dragonfly/sys/sys/
H A Dlink_elf.h61 struct link_map *l_next, *l_prev; /* linked list of of mapped libs */ member
/dragonfly/sys/dev/serial/sio/
H A Dsio.c1982 qp = com->obufq.l_next; in siointr1()
1984 qp = qp->l_next; in siointr1()
1988 com->obufq.l_next = qp; in siointr1()
2552 com->obufs[0].l_next = NULL; in comstart()
2556 qp = com->obufq.l_next; in comstart()
2557 while ((next = qp->l_next) != NULL) in comstart()
2559 qp->l_next = &com->obufs[0]; in comstart()
2563 com->obufq.l_next = &com->obufs[0]; in comstart()
2572 com->obufs[1].l_next = NULL; in comstart()
2576 qp = com->obufq.l_next; in comstart()
[all …]
H A Dsio_private.h66 struct lbq *l_next; /* next in queue */ member
/dragonfly/libexec/rtld-elf/
H A Drtld.c3686 prev->l_next != NULL && prev->l_next != &obj_rtld.linkmap; in linkmap_add()
3687 prev = prev->l_next) in linkmap_add()
3692 l->l_next = prev->l_next; in linkmap_add()
3693 if (l->l_next != NULL) in linkmap_add()
3694 l->l_next->l_prev = l; in linkmap_add()
3695 prev->l_next = l; in linkmap_add()
3704 if ((r_debug.r_map = l->l_next) != NULL) in linkmap_delete()
3705 l->l_next->l_prev = NULL; in linkmap_delete()
3709 if ((l->l_prev->l_next = l->l_next) != NULL) in linkmap_delete()
3710 l->l_next->l_prev = l->l_prev; in linkmap_delete()
/dragonfly/contrib/gdb-7/gdb/
H A Dsolib-svr4.c72 CORE_ADDR l_ld, l_next, l_prev, l_name; member
170 lm_info->l_next = extract_typed_address (&lm[lmo->l_next_offset], in lm_info_read()
1191 next_lm = new->lm_info->l_next; in svr4_read_so_list()