Lines Matching refs:unw_map
53 unw_map_t unw_map; in GenerateMap() local
54 while (unw_map_cursor_get_next(&map_cursor_, &unw_map)) { in GenerateMap()
57 map.start = unw_map.start; in GenerateMap()
58 map.end = unw_map.end; in GenerateMap()
59 map.offset = unw_map.offset; in GenerateMap()
60 map.load_bias = unw_map.load_base; in GenerateMap()
61 map.flags = unw_map.flags; in GenerateMap()
62 map.name = unw_map.path; in GenerateMap()
101 unw_map_t unw_map; in GenerateMap() local
103 while ((ret = unw_map_local_cursor_get_next(&map_cursor_, &unw_map)) > 0) { in GenerateMap()
106 map.start = unw_map.start; in GenerateMap()
107 map.end = unw_map.end; in GenerateMap()
108 map.offset = unw_map.offset; in GenerateMap()
109 map.load_bias = unw_map.load_base; in GenerateMap()
110 map.flags = unw_map.flags; in GenerateMap()
111 map.name = unw_map.path; in GenerateMap()
113 free(unw_map.path); in GenerateMap()