/aosp12/system/extras/simpleperf/ |
H A D | thread_tree.h | 40 struct MapEntry { struct 48 MapEntry(uint64_t start_addr, uint64_t len, uint64_t pgoff, Dso* dso, bool in_kernel, argument 56 MapEntry() {} in MapEntry() function 71 std::map<uint64_t, const MapEntry*> maps; // Map from start_addr to a MapEntry. argument 74 const MapEntry* FindMapByAddr(uint64_t addr) const; 117 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip, bool in_kernel); 119 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip); 149 const MapEntry* AllocateMap(const MapEntry& entry); 150 void InsertMap(MapSet& maps, const MapEntry& entry); 159 std::vector<std::unique_ptr<MapEntry>> map_storage_; [all …]
|
H A D | thread_tree.cpp | 217 const MapEntry* ThreadTree::AllocateMap(const MapEntry& entry) { in AllocateMap() 218 map_storage_.emplace_back(new MapEntry(entry)); in AllocateMap() 222 static MapEntry RemoveFirstPartOfMapEntry(const MapEntry* entry, uint64_t new_start_addr) { in RemoveFirstPartOfMapEntry() 223 MapEntry result = *entry; in RemoveFirstPartOfMapEntry() 230 static MapEntry RemoveSecondPartOfMapEntry(const MapEntry* entry, uint64_t new_len) { in RemoveSecondPartOfMapEntry() 231 MapEntry result = *entry; in RemoveSecondPartOfMapEntry() 239 std::map<uint64_t, const MapEntry*>& map = maps.maps; in InsertMap() 268 const MapEntry* MapSet::FindMapByAddr(uint64_t addr) const { in FindMapByAddr() 280 const MapEntry* result = nullptr; in FindMap() 290 const MapEntry* result = thread->maps->FindMapByAddr(ip); in FindMap() [all …]
|
H A D | thread_tree_test.cpp | 59 const MapEntry* entry = thread_tree_.FindMap(thread, i, false); in CheckMaps() 112 const MapEntry* map = thread_tree_.FindMap(thread, 0); in TEST_F()
|
H A D | cmd_debug_unwind.cpp | 313 const MapEntry* old_map = p.second; in CreateThreadWithUpdatedMaps() 314 MapEntry* map = nullptr; in CreateThreadWithUpdatedMaps() 317 map_storage_.emplace_back(new MapEntry); in CreateThreadWithUpdatedMaps() 327 map = const_cast<MapEntry*>(p.second); in CreateThreadWithUpdatedMaps() 337 std::vector<std::unique_ptr<MapEntry>> map_storage_; 395 const MapEntry* map = thread_tree_.FindMap(thread, ips[i], false); in WriteMapsForSample()
|
H A D | cmd_report.cpp | 56 const MapEntry* map; 74 const MapEntry* map; 82 int cpu, const ThreadEntry* thread, const MapEntry* map, const Symbol* symbol, in SampleEntry() 168 const MapEntry* map = thread_tree_->FindMap(thread, r.ip_data.ip, in_kernel); in CreateSample() 179 const MapEntry* from_map = thread_tree_->FindMap(thread, item.from); in CreateBranchSample() 182 const MapEntry* to_map = thread_tree_->FindMap(thread, item.to); in CreateBranchSample() 199 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel); in CreateCallChainSample()
|
H A D | ETMDecoder.cpp | 202 const MapEntry* FindMap(uint8_t trace_id, uint64_t addr) { in FindMap() 229 const MapEntry* userspace_map = nullptr; 244 const MapEntry* map = map_locator_.FindMap(trace_id, address); in ReadTargetMemory() 297 const MapEntry* buffer_map = nullptr; 429 const MapEntry* map = map_locator_.FindMap(trace_id, elem.st_addr); in ProcessElement() 583 const MapEntry* map = map_locator_.FindMap(trace_id, data.addr); in ProcessAtomPacket()
|
H A D | OfflineUnwinder_impl.h | 32 std::vector<const MapEntry*> entries_;
|
H A D | report_utils.h | 45 const MapEntry* map = nullptr;
|
H A D | OfflineUnwinder.cpp | 144 static unwindstack::MapInfo* CreateMapInfo(const MapEntry* entry) { in CreateMapInfo() 180 const MapEntry* entry = it->second; in UpdateMaps()
|
H A D | OfflineUnwinder_test.cpp | 50 std::vector<MapEntry> map_entries; in TEST()
|
H A D | report_lib_interface.cpp | 157 Mapping* AddMapping(const MapEntry& map); 361 Mapping* ReportLib::AddMapping(const MapEntry& map) { in AddMapping()
|
H A D | sample_tree_test.cpp | 67 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel); in AddSample()
|
H A D | report_utils.cpp | 96 const MapEntry* map = thread_tree_.FindMap(thread, ips[i], i < kernel_ip_count); in Build()
|
H A D | cmd_monitor.cpp | 566 const MapEntry* map = thread_tree_.FindMap(thread, ip, in_kernel); in GetSymbolInfo()
|
H A D | cmd_dumprecord.cpp | 413 const MapEntry* map = thread_tree_.FindMap(thread, ip, in_kernel); in GetSymbolInfo()
|
H A D | cmd_record_test.cpp | 865 const MapEntry* map = thread_tree.FindMap(thread, ip, false); in TEST()
|
H A D | cmd_record.cpp | 1970 const MapEntry* map = thread_tree_.FindMap(thread, ips[i], i < kernel_ip_count); in CollectHitFileInfo()
|
/aosp12/bionic/libc/malloc_debug/ |
H A D | MapData.h | 39 struct MapEntry { struct 40 …MapEntry(uintptr_t start, uintptr_t end, uintptr_t offset, const char* name, size_t name_len, int … in MapEntry() function 43 explicit MapEntry(uintptr_t pc) : start(pc), end(pc) {} in MapEntry() argument 58 bool operator()(const MapEntry* a, const MapEntry* b) const { return a->end <= b->start; } in operator() argument 66 const MapEntry* find(uintptr_t pc, uintptr_t* rel_pc = nullptr); 72 std::set<MapEntry*, compare_entries> entries_;
|
H A D | MapData.cpp | 44 static MapEntry* parse_line(char* line) { in parse_line() 70 MapEntry* entry = new MapEntry(start, end, offset, name, name_len, flags); in parse_line() 81 static inline bool get_val(MapEntry* entry, uintptr_t addr, T* store) { in get_val() 93 static bool valid_elf(MapEntry* entry) { in valid_elf() 103 static void read_loadbias(MapEntry* entry) { in read_loadbias() 136 static void inline init(MapEntry* entry) { in init() 155 MapEntry* entry = parse_line(buffer.data()); in ReadMaps() 180 const MapEntry* MapData::find(uintptr_t pc, uintptr_t* rel_pc) { in find() 181 MapEntry pc_entry(pc); in find() 194 MapEntry* entry = *it; in find() [all …]
|
H A D | backtrace.cpp | 54 static const MapEntry* g_current_code_map = nullptr; 149 const MapEntry* entry = g_map_data.find(frames[frame_num], &rel_pc); in backtrace_string()
|
/aosp12/frameworks/rs/ |
H A D | rsMap.h | 31 typedef Pair<KeyType, ValueType> MapEntry; typedef 34 MapEntry entry; 113 const MapEntry& operator*() const {
|
/aosp12/packages/apps/TV/libs/m2/ |
H A D | protobuf-java-3.7.0.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
/aosp12/art/build/boot/ |
H A D | preloaded-classes | 1577 java.util.concurrent.ConcurrentHashMap$MapEntry 2398 sun.security.x509.NetscapeCertTypeExtension$MapEntry
|
H A D | boot-image-profile.txt | 6422 HSPLjava/util/concurrent/ConcurrentHashMap$MapEntry;-><init>(Ljava/lang/Object;Ljava/lang/Object;Lj… 6423 HSPLjava/util/concurrent/ConcurrentHashMap$MapEntry;->getKey()Ljava/lang/Object; 6424 HSPLjava/util/concurrent/ConcurrentHashMap$MapEntry;->getValue()Ljava/lang/Object; 11275 Ljava/util/concurrent/ConcurrentHashMap$MapEntry; 12148 Lsun/security/x509/NetscapeCertTypeExtension$MapEntry; 12365 [Lsun/security/x509/NetscapeCertTypeExtension$MapEntry;
|
/aosp12/packages/apps/Messaging/build/gcheckstyle/ |
H A D | google-style-checker_deploy.jar | META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com ... |