Lines Matching refs:dex_file
154 std::shared_ptr<DexFile> dex_file = in TEST() local
156 ASSERT_TRUE(dex_file != nullptr); in TEST()
160 dex_file = DexFile::Create(0x4000, sizeof(kDexData), &memory, info.get()); in TEST()
161 EXPECT_TRUE(dex_file == nullptr); in TEST()
182 std::shared_ptr<DexFile> dex_file(DexFile::Create(0x4000, sizeof(kDexData), &memory, info.get())); in TEST() local
183 ASSERT_TRUE(dex_file != nullptr); in TEST()
187 ASSERT_TRUE(dex_file->GetFunctionName(0x4102, &method, &method_offset)); in TEST()
191 ASSERT_TRUE(dex_file->GetFunctionName(0x4118, &method, &method_offset)); in TEST()
200 std::shared_ptr<DexFile> dex_file(DexFile::Create(0x4000, sizeof(kDexData), &memory, info.get())); in TEST() local
201 ASSERT_TRUE(dex_file != nullptr); in TEST()
205 EXPECT_FALSE(dex_file->GetFunctionName(0x100000, &method, &method_offset)); in TEST()
207 EXPECT_FALSE(dex_file->GetFunctionName(0x98, &method, &method_offset)); in TEST()
219 std::shared_ptr<DexFile> dex_file = in TEST() local
221 EXPECT_TRUE(dex_file != nullptr); in TEST()
225 ASSERT_TRUE(dex_file->GetFunctionName(0x4118, &method, &method_offset)); in TEST()
235 ASSERT_TRUE(dex_file->GetFunctionName(0x4118, &method, &method_offset)); in TEST()
240 ASSERT_TRUE(dex_file->GetFunctionName(0x4102, &method, &method_offset)); in TEST()