Home | History | Annotate | Download | only in showmap

Lines Matching refs:current

127     mapinfo *current = *head;
134 if (current && coalesce_by_name && !strcmp(map->name, current->name)) {
135 current->size += map->size;
136 current->rss += map->rss;
137 current->pss += map->pss;
138 current->shared_clean += map->shared_clean;
139 current->shared_dirty += map->shared_dirty;
140 current->private_clean += map->private_clean;
141 current->private_dirty += map->private_dirty;
142 current->is_bss &= map->is_bss;
143 current->count++;
148 if (!current || order_before(map, current, sort_by_address)) {
154 map->next = current;
158 prev = current;
159 current = current->next;
169 mapinfo *current = NULL;
185 if (current != NULL && !parse_field(current, line)) {
190 if (!parse_header(line, current, &next)) {
191 enqueue_map(&head, current, sort_by_address, coalesce_by_name);
192 current = next;
199 enqueue_map(&head, current, sort_by_address, coalesce_by_name);