Home
last modified time | relevance | path

Searched defs:MapEntry (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/
Dthread_tree.h30 struct MapEntry { struct
37 MapEntry(uint64_t start_addr, uint64_t len, uint64_t pgoff, uint64_t time, Dso* dso) in MapEntry() argument
40 MapEntry() { in MapEntry() function
49 bool operator()(const MapEntry* map1, const MapEntry* map2) const; argument
104 using MapEntry = simpleperf::MapEntry; variable
Dthread_tree.cpp136 void ThreadTree::FixOverlappedMap(std::set<MapEntry*, MapComparator>* map_set, const MapEntry* map)… in FixOverlappedMap()
167 static MapEntry* FindMapByAddr(const std::set<MapEntry*, MapComparator>& maps, uint64_t addr) { in FindMapByAddr()