Home
last modified time | relevance | path

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

/bionic/linker/
Dlinker_gdb_support.cpp52 r_debug_tail->l_next = map; in insert_link_map_into_debug_map()
54 map->l_next = nullptr; in insert_link_map_into_debug_map()
58 map->l_next = nullptr; in insert_link_map_into_debug_map()
69 map->l_prev->l_next = map->l_next; in remove_link_map_from_debug_map()
71 if (map->l_next) { in remove_link_map_from_debug_map()
72 map->l_next->l_prev = map->l_prev; in remove_link_map_from_debug_map()
/bionic/libc/include/
Dlink.h74 struct link_map* l_next; member
/bionic/tests/
Dlink_test.cpp210 for (link_map* map = dbg->r_map; map != nullptr; map = map->l_next) { in TEST()