Home | History | Annotate | Download | only in simpleperf

Lines Matching refs:MapEntry

37 struct MapEntry {
45 MapEntry(uint64_t start_addr, uint64_t len, uint64_t pgoff, uint64_t time,
53 MapEntry() {}
59 bool operator()(const MapEntry* map1, const MapEntry* map2) const;
62 using MapSet = std::set<MapEntry*, MapComparator>;
72 // (in MapEntry) of the monitored threads. It also has interface to access
82 unknown_map_ = MapEntry(0, std::numeric_limits<unsigned long long>::max(),
96 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip,
99 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip);
100 const Symbol* FindSymbol(const MapEntry* map, uint64_t ip,
128 MapEntry* AllocateMap(const MapEntry& value);
129 void FixOverlappedMap(MapSet* maps, const MapEntry* map);
136 std::vector<std::unique_ptr<MapEntry>> map_storage_;
137 MapEntry unknown_map_;
150 using MapEntry = simpleperf::MapEntry;