Home
last modified time | relevance | path

Searched refs:dex_files_ (Results 1 – 5 of 5) sorted by relevance

/system/core/libunwindstack/tests/
DDexFilesTest.cpp43 dex_files_.reset(new DexFiles(process_memory_)); in SetUp()
44 dex_files_->SetArch(ARCH_ARM); in SetUp()
106 std::unique_ptr<DexFiles> dex_files_; member in unwindstack::DexFilesTest
151 dex_files_->GetMethodInformation(maps_.get(), info, 0, &method_name, &method_offset); in TEST_F()
165 dex_files_->GetMethodInformation(maps_.get(), info, 0x300100, &method_name, &method_offset); in TEST_F()
175 dex_files_->SetArch(ARCH_ARM64); in TEST_F()
180 dex_files_->GetMethodInformation(maps_.get(), info, 0x301102, &method_name, &method_offset); in TEST_F()
195 dex_files_->GetMethodInformation(maps_.get(), info, 0x300104, &method_name, &method_offset); in TEST_F()
205 dex_files_->SetArch(ARCH_ARM64); in TEST_F()
211 dex_files_->GetMethodInformation(maps_.get(), info, 0x300106, &method_name, &method_offset); in TEST_F()
[all …]
/system/core/libbacktrace/
DUnwindStackMap.h58 unwindstack::DexFiles* GetDexFiles() { return dex_files_.get(); } in GetDexFiles()
68 std::unique_ptr<unwindstack::DexFiles> dex_files_; variable
DUnwindStackMap.cpp49 dex_files_.reset(new unwindstack::DexFiles(process_memory_, search_libs_)); in Build()
/system/core/libunwindstack/
DUnwinder.cpp76 if (dex_files_ == nullptr) { in FillInDexFrame()
80 dex_files_->GetMethodInformation(maps_, info, dex_pc, &frame->function_name, in FillInDexFrame()
299 dex_files_ = dex_files; in SetDexFiles()
/system/core/libunwindstack/include/unwindstack/
DUnwinder.h101 DexFiles* dex_files_ = nullptr; variable