Searched refs:map_entry (Results 1 – 2 of 2) sorted by relevance
112 auto map_entry = allocations.find(return_ptr); in allocation_tracker_notify_alloc() local114 if (map_entry != allocations.end()) { in allocation_tracker_notify_alloc()115 allocation = map_entry->second; in allocation_tracker_notify_alloc()141 auto map_entry = allocations.find(ptr); in allocation_tracker_notify_free() local142 CHECK(map_entry != allocations.end()); in allocation_tracker_notify_free()143 allocation_t* allocation = map_entry->second; in allocation_tracker_notify_free()
65 def add(self, pid, map_entry): argument70 if entry.end <= map_entry.start:72 elif entry.start < map_entry.start:73 entry.end = map_entry.start77 new_list.append(map_entry)79 if entry.start >= map_entry.end:81 elif entry.end > map_entry.end:82 entry.start = map_entry.end85 new_list.append(map_entry)359 map_entry = process_maps.find(record.pid, ip)[all …]