Lines Matching refs:unw_map
48 unw_map_t unw_map;
49 while (unw_map_cursor_get_next(&map_cursor_, &unw_map)) {
52 map.start = unw_map.start;
53 map.end = unw_map.end;
54 map.offset = unw_map.offset;
55 map.load_base = unw_map.load_base;
56 map.flags = unw_map.flags;
57 map.name = unw_map.path;
89 unw_map_t unw_map;
91 while ((ret = unw_map_local_cursor_get_next(&map_cursor_, &unw_map)) > 0) {
94 map.start = unw_map.start;
95 map.end = unw_map.end;
96 map.offset = unw_map.offset;
97 map.load_base = unw_map.load_base;
98 map.flags = unw_map.flags;
99 map.name = unw_map.path;
101 free(unw_map.path);