Searched refs:lmap (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/system/ulib/inspector/
H A Ddso-list.cpp80 uintptr_t lmap, debug_addr; local
87 if (read_mem(h, debug_addr + rdebug_off_lmap, &lmap, sizeof(lmap))) {
92 while (lmap != 0) {
101 if (read_mem(h, lmap + lmap_off_addr, &base, sizeof(base))) {
104 if (read_mem(h, lmap + lmap_off_next, &next, sizeof(next))) {
107 if (read_mem(h, lmap + lmap_off_name, &str, sizeof(str))) {
119 lmap = next;
/fuchsia/zircon/system/utest/debugger/
H A Ddebugger.cpp477 const link_map* lmap = debug->r_map; local
481 while (lmap != NULL) {
482 if (strcmp(lmap->l_name, launchpad_so) == 0)
484 else if (strcmp(lmap->l_name, libc_so) == 0)
486 else if (strcmp(lmap->l_name, test_utils_so) == 0)
488 else if (strcmp(lmap->l_name, unittest_so) == 0)
490 lmap = lmap->l_next;

Completed in 83 milliseconds