Home | History | Annotate | Download | only in libbacktrace

Lines Matching full: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.flags = unw_map.flags;
55 map.name = unw_map.path;
87 unw_map_t unw_map;
89 while ((ret = unw_map_local_cursor_get_next(&map_cursor_, &unw_map)) > 0) {
92 map.start = unw_map.start;
93 map.end = unw_map.end;
94 map.flags = unw_map.flags;
95 map.name = unw_map.path;
97 free(unw_map.path);