Searched refs:l_prev (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_util.c35 * (l_prev) pointers. The current head and tail list elements have their
41 ctf_list_t *p = lp->l_prev; /* p = tail list element */
44 lp->l_prev = q;
45 q->l_prev = p;
65 p->l_prev = NULL;
69 q->l_prev = p;
71 lp->l_prev = p;
83 if (p->l_prev != NULL)
84 p->l_prev->l_next = p->l_next;
89 p->l_next->l_prev
[all...]
H A Dctf_impl.h108 struct ctf_list *l_prev; /* previous pointer or tail pointer */ member in struct:ctf_list
292 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
/freebsd-11-stable/contrib/gdb/gdb/
H A Dsolib-legacy.c71 lmo.l_prev_offset = offsetof (struct link_map, l_prev);
72 lmo.l_prev_size = fieldsize (struct link_map, l_prev);
123 lmo32.l_prev_offset = offsetof (struct link_map32, l_prev);
124 lmo32.l_prev_size = fieldsize (struct link_map32, l_prev);
/freebsd-11-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-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DNativeProcessELF.h30 T l_prev; member in struct:lldb_private::NativeProcessELF::ELFLinkMap
/freebsd-11-stable/usr.bin/col/
H A Dcol.c91 LINE *l_prev; /* previous line */ member in struct:line_str
272 l->l_prev != NULL) {
273 l = l->l_prev;
286 l->l_prev = lnew;
303 l->l_next->l_prev = l;
389 lines->l_prev = NULL;
/freebsd-11-stable/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dt_dlinfo.c104 for (; map; map = map->l_prev)
/freebsd-11-stable/sys/cddl/dev/fbt/
H A Dfbt.c610 struct ctf_list *l_prev; /* previous pointer or tail pointer */ member in struct:ctf_list
614 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
648 * (l_prev) pointers. The current head and tail list elements have their
654 ctf_list_t *p = lp->l_prev; /* p = tail list element */
657 lp->l_prev = q;
658 q->l_prev = p;
678 p->l_prev = NULL;
682 q->l_prev = p;
684 lp->l_prev = p;
/freebsd-11-stable/sys/kern/
H A Dlink_elf.c297 l->l_prev = NULL;
305 l->l_prev = prev;
313 if (l->l_prev == NULL) {
316 l->l_next->l_prev = NULL;
319 if ((l->l_prev->l_next = l->l_next) != NULL)
320 l->l_next->l_prev = l->l_prev;
/freebsd-11-stable/libexec/rtld-elf/
H A Drtld.c4064 l->l_prev = prev;
4067 l->l_next->l_prev = l;
4076 if (l->l_prev == NULL) {
4078 l->l_next->l_prev = NULL;
4082 if ((l->l_prev->l_next = l->l_next) != NULL)
4083 l->l_next->l_prev = l->l_prev;

Completed in 112 milliseconds