Lines Matching refs:mapinfo
12 typedef struct mapinfo mapinfo;
14 struct mapinfo {
15 mapinfo *next;
40 static int parse_header(const char* line, const mapinfo* prev, mapinfo** mi) {
73 struct mapinfo* info = calloc(1, sizeof(mapinfo) + name_size);
89 static int parse_field(mapinfo* mi, const char* line) {
116 static int order_before(const mapinfo *a, const mapinfo *b, int sort_by_address) {
125 static void enqueue_map(mapinfo **head, mapinfo *map, int sort_by_address, int coalesce_by_name) {
126 mapinfo *prev = NULL;
127 mapinfo *current = *head;
163 static mapinfo *load_maps(int pid, int sort_by_address, int coalesce_by_name)
168 mapinfo *head = NULL;
169 mapinfo *current = NULL;
189 mapinfo *next;
246 mapinfo *milist;
247 mapinfo *mi;
266 mapinfo* last = mi;