| /system/unwinding/libunwindstack/tests/ | 
| D | MapsTest.cpp | 29   BufferMaps maps(line.c_str());  in VerifyLine()  local47   Maps maps;  in TEST()  local
 83   Maps maps;  in TEST()  local
 193   BufferMaps maps(  in TEST()  local
 247   BufferMaps maps(  in TEST()  local
 283   BufferMaps maps(  in TEST()  local
 310   BufferMaps maps(  in TEST()  local
 328   BufferMaps maps(  in TEST()  local
 346   BufferMaps maps(  in TEST()  local
 383   FileMaps maps(tf.path);  in TEST()  local
 [all …]
 
 | 
| D | MapInfoCreateMemoryTest.cpp | 283   Maps maps;  in TEST_F()  local323   Maps maps;  in TEST_F()  local
 370   Maps maps;  in TEST_F()  local
 401   Maps maps;  in TEST_F()  local
 445   Maps maps;  in TEST_F()  local
 
 | 
| D | UnwindTest.cpp | 148 static void VerifyUnwind(pid_t pid, Maps* maps, Regs* regs,  in VerifyUnwind()186       std::unique_ptr<Maps> maps;  in InnerFunction()  local
 262   RemoteMaps maps(pid);  in TEST_F()  local
 313   RemoteMaps maps(*pid);  in RemoteUnwind()  local
 374   LocalMaps maps;  in TEST_F()  local
 407   RemoteMaps maps(pid);  in RemoteThroughSignal()  local
 438   LocalMaps maps;  in TEST_F()  local
 529   LocalMaps maps;  in TEST_F()  local
 682   LocalUpdatableMaps maps;  in TEST_F()  local
 
 | 
| D | MapInfoGetElfTest.cpp | 414 void MapInfoGetElfTest::InitMapInfo(std::vector<std::shared_ptr<MapInfo>>& maps, bool in_memory) {  in InitMapInfo()431   std::vector<std::shared_ptr<MapInfo>> maps;  in TEST_F()  local
 464   std::vector<std::shared_ptr<MapInfo>> maps;  in TEST_F()  local
 
 | 
| D | GlobalTest.cpp | 50   void TestFindAndReadVariable(Maps* maps, const char* var_str) {  in TestFindAndReadVariable()
 | 
| /system/unwinding/libunwindstack/benchmarks/ | 
| D | local_unwind_benchmarks.cpp | 37   unwindstack::Maps* maps;  member81   unwindstack::LocalMaps maps;  in BM_local_unwind_uncached_process_memory()  local
 93   unwindstack::LocalMaps maps;  in BM_local_unwind_cached_process_memory()  local
 153   unwindstack::LocalUpdatableMaps maps;  in BM_local_unwind_local_updatable_maps_uncached()  local
 165   unwindstack::LocalUpdatableMaps maps;  in BM_local_unwind_local_updatable_maps_cached()  local
 177   unwindstack::LocalUpdatableMaps maps;  in BM_local_unwind_local_updatable_maps_thread_cached()  local
 189   unwindstack::LocalMaps maps;  in BM_local_unwind_uncached_process_memory_no_func_names()  local
 201   unwindstack::LocalMaps maps;  in BM_local_unwind_cached_process_memory_no_func_names()  local
 213   unwindstack::LocalUpdatableMaps maps;  in BM_local_unwind_local_updatable_maps_uncached_no_func_names()  local
 225   unwindstack::LocalUpdatableMaps maps;  in BM_local_unwind_local_updatable_maps_cached_no_func_names()  local
 [all …]
 
 | 
| D | ElfBenchmark.cpp | 86 static void InitializeBuildId(benchmark::State& state, unwindstack::Maps& maps,  in InitializeBuildId()108   unwindstack::LocalMaps maps;  in BM_elf_get_build_id_from_object()  local
 132   unwindstack::LocalMaps maps;  in BM_elf_get_build_id_from_file()  local
 
 | 
| D | MapsBenchmark.cpp | 46   std::string maps;  in CreateMap()  local59     BenchmarkLocalUpdatableMaps maps;  in ReparseBenchmark()  local
 103   TemporaryFile maps;  in BM_local_updatable_maps_reparse_same_maps_small()  local
 111   TemporaryFile maps;  in BM_local_updatable_maps_reparse_same_maps_large()  local
 
 | 
| D | Utils.cpp | 66   const std::vector<android::meminfo::Vma>& maps = proc_mem.MapsWithoutUsageStats();  in GatherRss()  local
 | 
| /system/libprocinfo/ | 
| D | process_map_benchmark.cpp | 33     std::vector<android::procinfo::MapInfo> maps;  in BM_ReadMapFile()  local44     unwindstack::FileMaps maps(map_file);  in BM_unwindstack_FileMaps()  local
 56     unwindstack::BufferMaps maps(content.c_str());  in BM_unwindstack_BufferMaps()  local
 
 | 
| D | process_map_test.cpp | 32   std::vector<android::procinfo::MapInfo> maps;  in TEST()  local59   std::vector<android::procinfo::MapInfo> maps;  in TEST()  local
 
 | 
| /system/unwinding/libunwindstack/include/unwindstack/ | 
| D | Unwinder.h | 56   Unwinder(size_t max_frames, Maps* maps, Regs* regs, std::shared_ptr<Memory> process_memory)  in Unwinder()62   Unwinder(size_t max_frames, Maps* maps, std::shared_ptr<Memory> process_memory)  in Unwinder()
 126   Unwinder(size_t max_frames, ArchEnum arch, Maps* maps, std::shared_ptr<Memory>& process_memory)  in Unwinder()
 156       : Unwinder(max_frames, maps), pid_(pid) {}  in Unwinder()  argument
 160       : Unwinder(max_frames, arch, maps), pid_(pid) {}  in Unwinder()  argument
 161   UnwinderFromPid(size_t max_frames, pid_t pid, ArchEnum arch, Maps* maps,  in UnwinderFromPid()
 
 | 
| /system/unwinding/libunwindstack/ | 
| D | GlobalDebugImpl.h | 132   bool ForEachSymfile(Maps* maps, uint64_t pc, Callback callback) {  in ForEachSymfile()170   bool GetFunctionName(Maps* maps, uint64_t pc, SharedString* name, uint64_t* offset) {  in GetFunctionName()
 177   Symfile* Find(Maps* maps, uint64_t pc) {  in Find()
 197   bool ReadAllEntries(Maps* maps) {  in ReadAllEntries()
 213   bool ReadAllEntries(Maps* maps, bool* race) {  in ReadAllEntries()
 234   bool ReadNewEntries(Maps* maps, std::map<UID, std::shared_ptr<Symfile>>* entries, bool* race) {  in ReadNewEntries()
 
 | 
| D | DexFiles.cpp | 30 bool GlobalDebugInterface<DexFile>::Load(Maps* maps, std::shared_ptr<Memory>& memory, uint64_t addr,  in Load()
 | 
| D | ThreadUnwinder.cpp | 70 ThreadUnwinder::ThreadUnwinder(size_t max_frames, Maps* maps)  in ThreadUnwinder()73 ThreadUnwinder::ThreadUnwinder(size_t max_frames, Maps* maps,  in ThreadUnwinder()
 
 | 
| D | Global.cpp | 62 void Global::FindAndReadVariable(Maps* maps, const char* var_str) {  in FindAndReadVariable()
 | 
| /system/extras/simpleperf/ | 
| D | OfflineUnwinder_test.cpp | 27 bool CheckUnwindMaps(UnwindMaps& maps, const MapSet& map_set) {  in CheckUnwindMaps()57   UnwindMaps maps;  in TEST()  local
 
 | 
| D | thread_tree.h | 71   std::map<uint64_t, const MapEntry*> maps;  // Map from start_addr to a MapEntry.  member81   std::shared_ptr<MapSet> maps;  // maps is shared by threads in the same process.  member
 
 | 
| D | thread_tree.cpp | 98   std::shared_ptr<MapSet> maps;  in CreateThread()  local178   auto maps = thread->maps;  in AddThreadMapsForDsoSymbols()  local
 251 void ThreadTree::InsertMap(MapSet& maps, const MapEntry& entry) {  in InsertMap()
 
 | 
| /system/unwinding/libunwindstack/utils/ | 
| D | ProcessTracer.cpp | 181   std::unique_ptr<Maps> maps = std::make_unique<RemoteMaps>(pid);  in UsesSharedLibrary()  local204   Maps* maps = unwinder.GetMaps();  in ProcIsInDesiredElf()  local
 
 | 
| D | OfflineUnwindUtils.h | 165     std::unique_ptr<Maps> maps;  member
 | 
| /system/memory/libmeminfo/tools/ | 
| D | procmem.cpp | 98 static int show(const MemUsage& proc_stats, const std::vector<Vma>& maps) {  in show()195     std::vector<Vma> maps(proc.Maps());  in main()  local
 
 | 
| /system/unwinding/libunwindstack/tests/fuzz/ | 
| D | UnwinderFuzz.cpp | 71   std::unique_ptr<Maps> maps = GetMaps(&data_provider);  in LLVMFuzzerTestOneInput()  local
 | 
| /system/core/debuggerd/libdebuggerd/ | 
| D | tombstone_proto.cpp | 96                                                            unwindstack::Maps* maps) {  in get_stack_overflow_cause()217   unwindstack::Maps* maps = unwinder->GetMaps();  in dump_probable_cause()  local
 364   unwindstack::Maps* maps = unwinder->GetMaps();  in dump_registers()  local
 467 static void dump_mappings(Tombstone* tombstone, unwindstack::Maps* maps,  in dump_mappings()
 
 | 
| /system/memory/libmeminfo/ | 
| D | libmeminfo_test.cpp | 69     const std::vector<Vma>& maps = proc_mem.Maps();  in TEST()  local75     const std::vector<Vma>& maps = proc_mem.Maps();  in TEST()  local
 95     const std::vector<Vma>& maps = proc_mem.MapsWithoutUsageStats();  in TEST()  local
 114     const std::vector<Vma>& maps = proc_mem.MapsWithoutUsageStats();  in TEST()  local
 141     const std::vector<Vma>& maps = proc_mem.MapsWithoutUsageStats();  in TEST()  local
 178     const std::vector<Vma>& maps = proc_mem.MapsWithoutUsageStats();  in TEST()  local
 
 |