Searched refs:method_offset (Results 1 – 6 of 6) sorted by relevance
/system/core/libunwindstack/tests/ |
D | DexFilesTest.cpp | 146 uint64_t method_offset = 0x124; in TEST_F() local 149 dex_files_->GetMethodInformation(maps_.get(), info, 0, &method_name, &method_offset); in TEST_F() 151 EXPECT_EQ(0x124U, method_offset); in TEST_F() 156 uint64_t method_offset = 0x124; in TEST_F() local 163 dex_files_->GetMethodInformation(maps_.get(), info, 0x300100, &method_name, &method_offset); in TEST_F() 165 EXPECT_EQ(0U, method_offset); in TEST_F() 172 uint64_t method_offset = 0x124; in TEST_F() local 179 dex_files_->GetMethodInformation(maps_.get(), info, 0x301102, &method_name, &method_offset); in TEST_F() 181 EXPECT_EQ(2U, method_offset); in TEST_F() 186 uint64_t method_offset = 0x124; in TEST_F() local [all …]
|
D | DexFileTest.cpp | 179 uint64_t method_offset; in TEST() local 180 ASSERT_TRUE(dex_file->GetMethodInformation(0x102, &method, &method_offset)); in TEST() 182 EXPECT_EQ(2U, method_offset); in TEST() 184 ASSERT_TRUE(dex_file->GetMethodInformation(0x118, &method, &method_offset)); in TEST() 186 EXPECT_EQ(0U, method_offset); in TEST() 197 uint64_t method_offset; in TEST() local 198 EXPECT_FALSE(dex_file->GetMethodInformation(0x100000, &method, &method_offset)); in TEST() 200 EXPECT_FALSE(dex_file->GetMethodInformation(0x98, &method, &method_offset)); in TEST()
|
/system/core/libunwindstack/ |
D | DexFile.cpp | 48 uint64_t* method_offset) { in GetMethodInformation() argument 54 *method_offset = dex_offset - method_info.offset; in GetMethodInformation()
|
D | DexFiles.cpp | 158 std::string* method_name, uint64_t* method_offset) { in GetMethodInformation() argument 173 dex_file->GetMethodInformation(dex_pc - addr, method_name, method_offset)) { in GetMethodInformation()
|
D | DexFile.h | 36 bool GetMethodInformation(uint64_t dex_offset, std::string* method_name, uint64_t* method_offset);
|
/system/core/libunwindstack/include/unwindstack/ |
D | DexFiles.h | 48 uint64_t* method_offset);
|