Home
last modified time | relevance | path

Searched refs:r_debug (Results 1 – 5 of 5) sorted by relevance

/bionic/linker/
Dlinker_gdb_support.cpp40 r_debug _r_debug =
41 {1, nullptr, reinterpret_cast<uintptr_t>(&rtld_db_dlactivity), r_debug::RT_CONSISTENT, 0};
79 _r_debug.r_state = r_debug::RT_ADD; in notify_gdb_of_load()
84 _r_debug.r_state = r_debug::RT_CONSISTENT; in notify_gdb_of_load()
91 _r_debug.r_state = r_debug::RT_DELETE; in notify_gdb_of_unload()
96 _r_debug.r_state = r_debug::RT_CONSISTENT; in notify_gdb_of_unload()
101 _r_debug.r_state = r_debug::RT_ADD; in notify_gdb_of_libraries()
103 _r_debug.r_state = r_debug::RT_CONSISTENT; in notify_gdb_of_libraries()
Dlinker_gdb_support.h42 extern struct r_debug _r_debug;
Dlinker.cpp3722 r_debug** dp = reinterpret_cast<r_debug**>(load_bias + d->d_un.d_ptr); in prelink_image()
3729 r_debug** dp = reinterpret_cast<r_debug**>( in prelink_image()
/bionic/tests/
Dlink_test.cpp109 static r_debug* find_exe_r_debug(ElfW(Dyn)* dynamic) { in find_exe_r_debug()
112 return reinterpret_cast<r_debug*>(d->d_un.d_val); in find_exe_r_debug()
121 TEST(link, r_debug) { in TEST() argument
134 r_debug* dbg = find_exe_r_debug(exe_dynamic); in TEST()
/bionic/libc/include/
Dlink.h73 struct r_debug { struct