Home | History | Annotate | Download | only in showmap

Lines Matching defs:mapinfo

11 struct mapinfo {
12 mapinfo *next;
43 static int parse_header(const char* line, const mapinfo* prev, mapinfo** mi) {
74 struct mapinfo* info = reinterpret_cast<mapinfo*>(calloc(1, sizeof(mapinfo) + name_size));
90 static int parse_field(mapinfo* mi, const char* line) {
121 static int order_before(const mapinfo *a, const mapinfo *b, int sort_by_address) {
130 static void enqueue_map(mapinfo **head, mapinfo *map, int sort_by_address, int coalesce_by_name) {
131 mapinfo *prev = NULL;
132 mapinfo *current = *head;
169 static mapinfo *load_maps(int pid, int sort_by_address, int coalesce_by_name)
174 mapinfo *head = NULL;
175 mapinfo *current = NULL;
195 mapinfo *next;
242 static void print_mi(mapinfo *mi, bool total)
263 mapinfo total;
266 mapinfo *milist = load_maps(pid, addresses, !verbose && !addresses);
274 for (mapinfo *mi = milist; mi;) {
275 mapinfo* last = mi;