Searched defs:map_info (Results 1 - 3 of 3) sorted by relevance

/external/libunwind/include/
H A Dmap_info.h31 struct map_info struct
42 struct map_info *next;
46 extern struct map_info *local_map_list;
56 struct map_info *map_alloc_info (void);
58 void map_free_info (struct map_info *);
60 struct map_info *map_find_from_addr (struct map_info *, unw_word_t);
62 struct map_info *map_create_list (pid_t);
64 void map_destroy_list (struct map_info *);
/external/libunwind/src/mi/
H A DLmap.c30 HIDDEN struct map_info *local_map_list = NULL;
103 struct map_info *map_info = map_cursor->cur_map; local
107 if (map_info == NULL)
122 unw_map->start = map_info->start;
123 unw_map->end = map_info->end;
124 unw_map->flags = map_info->flags;
125 if (map_info->path)
126 unw_map->path = strdup (map_info->path);
130 map_cursor->cur_map = map_info
[all...]
H A Dmap.c71 struct map_info *map_info = map_cursor->cur_map; local
73 if (map_info == NULL)
76 unw_map->start = map_info->start;
77 unw_map->end = map_info->end;
78 unw_map->flags = map_info->flags;
79 unw_map->path = map_info->path;
81 map_cursor->cur_map = map_info->next;
86 HIDDEN struct map_info *
97 mempool_init (&map_pool, sizeof(struct map_info),
112 map_destroy_list(struct map_info *map_info) argument
[all...]

Completed in 3435 milliseconds