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;
63 std::set<MapEntry*, MapComparator> maps;
75 // (in MapEntry) of the monitored threads. It also has interface to access
85 unknown_map_ = MapEntry(0, std::numeric_limits<unsigned long long>::max(),
99 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip,
102 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip);
103 const Symbol* FindSymbol(const MapEntry* map, uint64_t ip,
131 MapEntry* AllocateMap(const MapEntry& value);
132 void FixOverlappedMap(MapSet* maps, const MapEntry* map);
139 std::vector<std::unique_ptr<MapEntry>> map_storage_;
140 MapEntry unknown_map_;
153 using MapEntry = simpleperf::MapEntry;