Home
last modified time | relevance | path

Searched refs:map_entry (Results 1 – 2 of 2) sorted by relevance

/system/bt/osi/src/
Dallocation_tracker.cc112 auto map_entry = allocations.find(return_ptr); in allocation_tracker_notify_alloc() local
114 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() local
142 CHECK(map_entry != allocations.end()); in allocation_tracker_notify_free()
143 allocation_t* allocation = map_entry->second; in allocation_tracker_notify_free()
/system/extras/simpleperf/scripts/
Ddebug_unwind_reporter.py65 def add(self, pid, map_entry): argument
70 if entry.end <= map_entry.start:
72 elif entry.start < map_entry.start:
73 entry.end = map_entry.start
77 new_list.append(map_entry)
79 if entry.start >= map_entry.end:
81 elif entry.end > map_entry.end:
82 entry.start = map_entry.end
85 new_list.append(map_entry)
359 map_entry = process_maps.find(record.pid, ip)
[all …]