/system/core/libunwindstack/include/unwindstack/ |
D | Maps.h | 39 class Maps { 41 virtual ~Maps() = default; 43 Maps() = default; 47 Maps(const Maps&) = delete; 48 Maps& operator=(const Maps&) = delete; 49 Maps(Maps&&) = default; 50 Maps& operator=(Maps&&) = default; 82 class RemoteMaps : public Maps { 99 class LocalUpdatableMaps : public Maps { 101 LocalUpdatableMaps() : Maps() {} in LocalUpdatableMaps() [all …]
|
D | JitDebug.h | 34 class Maps; variable 43 Elf* GetElf(Maps* maps, uint64_t pc); 46 void Init(Maps* maps);
|
D | DexFiles.h | 35 class Maps; variable 47 void GetMethodInformation(Maps* maps, MapInfo* info, uint64_t dex_pc, std::string* method_name, 51 void Init(Maps* maps);
|
D | Unwinder.h | 66 Unwinder(size_t max_frames, Maps* maps, Regs* regs, std::shared_ptr<Memory> process_memory) in Unwinder() 70 Unwinder(size_t max_frames, Maps* maps, std::shared_ptr<Memory> process_memory) in Unwinder() 96 Maps* GetMaps() { return maps_; } in GetMaps() 126 Maps* maps_; 152 std::unique_ptr<Maps> maps_ptr_;
|
D | Global.h | 34 class Maps; variable 49 void FindAndReadVariable(Maps* maps, const char* variable);
|
/system/core/libunwindstack/benchmarks/ |
D | unwind_benchmarks.cpp | 32 size_t Call6(std::shared_ptr<unwindstack::Memory>& process_memory, unwindstack::Maps* maps) { in Call6() 40 size_t Call5(std::shared_ptr<unwindstack::Memory>& process_memory, unwindstack::Maps* maps) { in Call5() 44 size_t Call4(std::shared_ptr<unwindstack::Memory>& process_memory, unwindstack::Maps* maps) { in Call4() 48 size_t Call3(std::shared_ptr<unwindstack::Memory>& process_memory, unwindstack::Maps* maps) { in Call3() 52 size_t Call2(std::shared_ptr<unwindstack::Memory>& process_memory, unwindstack::Maps* maps) { in Call2() 56 size_t Call1(std::shared_ptr<unwindstack::Memory>& process_memory, unwindstack::Maps* maps) { in Call1() 86 static void Initialize(benchmark::State& state, unwindstack::Maps& maps, in Initialize()
|
/system/core/libunwindstack/ |
D | Maps.cpp | 42 MapInfo* Maps::Find(uint64_t pc) { in Find() 62 bool Maps::Parse() { in Parse() 76 void Maps::Add(uint64_t start, uint64_t end, uint64_t offset, uint64_t flags, in Add() 85 void Maps::Sort() { in Sort()
|
D | DexFiles.cpp | 121 void DexFiles::Init(Maps* maps) { in Init() 157 void DexFiles::GetMethodInformation(Maps* maps, MapInfo* info, uint64_t dex_pc, in GetMethodInformation()
|
D | JitDebug.cpp | 173 void JitDebug::Init(Maps* maps) { in Init() 183 Elf* JitDebug::GetElf(Maps* maps, uint64_t pc) { in GetElf()
|
D | Global.cpp | 66 void Global::FindAndReadVariable(Maps* maps, const char* var_str) { in FindAndReadVariable()
|
/system/core/libbacktrace/ |
D | UnwindStackMap.h | 52 unwindstack::Maps* stack_maps() { return stack_maps_.get(); } in stack_maps() 67 std::unique_ptr<unwindstack::Maps> stack_maps_;
|
D | UnwindStackMap.cpp | 102 unwindstack::Maps* maps = stack_maps(); in GetFunctionName() 149 unwindstack::Maps* maps = new unwindstack::Maps; in Build()
|
/system/core/debuggerd/libdebuggerd/test/ |
D | UnwinderMock.h | 25 UnwinderMock() : Unwinder(128, new unwindstack::Maps, nullptr) {} in UnwinderMock()
|
D | tombstone_test.cpp | 379 unwindstack::Maps maps; in TEST_F() 463 unwindstack::Maps maps; in TEST_F() 553 unwindstack::Maps maps; in TEST_F() 681 unwindstack::Maps maps; in TEST_F()
|
/system/extras/simpleperf/ |
D | OfflineUnwinder.h | 59 class UnwindMaps : public unwindstack::Maps {
|
/system/core/libmeminfo/include/meminfo/ |
D | procmeminfo.h | 39 const std::vector<Vma>& Maps();
|
/system/hardware/interfaces/suspend/1.0/default/ |
D | SystemSuspendStats.proto | 26 // Maps a unique id of a WakeLock instance to the corresponding WakeLockStats message.
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone.cpp | 89 static void dump_probable_cause(log_t* log, const siginfo_t* si, unwindstack::Maps* maps) { in dump_probable_cause() 157 static void dump_stack_segment(log_t* log, unwindstack::Maps* maps, unwindstack::Memory* memory, in dump_stack_segment() 197 unwindstack::Maps* maps, unwindstack::Memory* memory) { in dump_stack() 301 unwindstack::Maps* maps = unwinder->GetMaps(); in dump_all_maps() 426 void dump_memory_and_code(log_t* log, unwindstack::Maps* maps, unwindstack::Memory* memory, in dump_memory_and_code() 474 unwindstack::Maps* maps = unwinder->GetMaps(); in dump_thread()
|
/system/core/libunwindstack/tests/ |
D | MapsTest.cpp | 47 Maps maps; in TEST() 65 Maps maps; in TEST() 71 Maps maps2 = std::move(maps); in TEST() 299 Maps::iterator it = maps.begin(); in TEST() 317 Maps::const_iterator it = maps.begin(); in TEST()
|
D | MapInfoCreateMemoryTest.cpp | 289 Maps maps; in TEST_F() 329 Maps maps; in TEST_F() 376 Maps maps; in TEST_F()
|
D | UnwindTest.cpp | 129 static void VerifyUnwind(pid_t pid, Maps* maps, Regs* regs, in VerifyUnwind() 164 std::unique_ptr<Maps> maps; in InnerFunction()
|
/system/extras/app-launcher/ |
D | README | 35 Maps 79 Maps :
|
/system/core/libmeminfo/tools/ |
D | procmem.cpp | 186 std::vector<Vma> maps(proc.Maps()); in main()
|
D | librank.cpp | 171 const std::vector<Vma> maps = pmem.Maps(); in scan_libs_per_process()
|
/system/core/libunwindstack/tools/ |
D | unwind_for_offline.cpp | 261 unwindstack::Maps* maps = unwinder.GetMaps(); in SaveData()
|