Home
last modified time | relevance | path

Searched refs:method_offset (Results 1 – 6 of 6) sorted by relevance

/system/core/libunwindstack/tests/
DDexFilesTest.cpp161 uint64_t method_offset = 0x124; in TEST_F() local
164 dex_files_->GetMethodInformation(maps_.get(), info, 0, &method_name, &method_offset); in TEST_F()
166 EXPECT_EQ(0x124U, method_offset); in TEST_F()
171 uint64_t method_offset = 0x124; in TEST_F() local
178 dex_files_->GetMethodInformation(maps_.get(), info, 0x300100, &method_name, &method_offset); in TEST_F()
180 EXPECT_EQ(0U, method_offset); in TEST_F()
187 uint64_t method_offset = 0x124; in TEST_F() local
194 dex_files_->GetMethodInformation(maps_.get(), info, 0x301102, &method_name, &method_offset); in TEST_F()
196 EXPECT_EQ(2U, method_offset); in TEST_F()
201 uint64_t method_offset = 0x124; in TEST_F() local
[all …]
DDexFileTest.cpp262 uint64_t method_offset; in TEST() local
263 ASSERT_TRUE(dex_file->GetMethodInformation(0x102, &method, &method_offset)); in TEST()
265 EXPECT_EQ(2U, method_offset); in TEST()
267 ASSERT_TRUE(dex_file->GetMethodInformation(0x118, &method, &method_offset)); in TEST()
269 EXPECT_EQ(0U, method_offset); in TEST()
280 uint64_t method_offset; in TEST() local
281 EXPECT_FALSE(dex_file->GetMethodInformation(0x100000, &method, &method_offset)); in TEST()
283 EXPECT_FALSE(dex_file->GetMethodInformation(0x98, &method, &method_offset)); in TEST()
/system/core/libunwindstack/
DDexFile.cpp80 uint64_t* method_offset) { in GetMethodInformation() argument
86 *method_offset = dex_offset - method_info.offset; in GetMethodInformation()
DDexFiles.cpp176 std::string* method_name, uint64_t* method_offset) { in GetMethodInformation() argument
191 dex_file->GetMethodInformation(dex_pc - addr, method_name, method_offset)) { in GetMethodInformation()
DDexFile.h36 bool GetMethodInformation(uint64_t dex_offset, std::string* method_name, uint64_t* method_offset);
/system/core/libunwindstack/include/unwindstack/
DDexFiles.h48 uint64_t* method_offset);