Lines Matching refs:h_dex_cache
550 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(h_klass->GetDexCache())); in TEST_F() local
551 ASSERT_TRUE(h_dex_cache != nullptr); in TEST_F()
552 const DexFile* const dex_file = h_dex_cache->GetDexFile(); in TEST_F()
562 EXPECT_TRUE(class_linker_->LookupString(string_idx, h_dex_cache.Get()) == nullptr); in TEST_F()
563 EXPECT_TRUE(h_dex_cache->GetResolvedString(string_idx) == nullptr); in TEST_F()
572 class_linker_->LookupString(string_idx, h_dex_cache.Get()); in TEST_F()
575 EXPECT_OBJ_PTR_EQ(s, h_dex_cache->GetResolvedString(string_idx)); in TEST_F()
579 EXPECT_TRUE(class_linker_->LookupString(string_idx, h_dex_cache.Get()) == nullptr); in TEST_F()
580 EXPECT_TRUE(h_dex_cache->GetResolvedString(string_idx) == nullptr); in TEST_F()
614 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(h_klass->GetDexCache())); in TEST_F() local
615 ASSERT_TRUE(h_dex_cache != nullptr); in TEST_F()
616 const DexFile* const dex_file = h_dex_cache->GetDexFile(); in TEST_F()
621 ASSERT_TRUE(h_dex_cache->GetResolvedMethodType(proto_index) == nullptr); in TEST_F()
626 class_linker_->ResolveMethodType(soa.Self(), proto_index, h_dex_cache, class_loader); in TEST_F()
629 ASSERT_TRUE(h_dex_cache->GetResolvedMethodType(proto_index) == method_type); in TEST_F()
632 ASSERT_TRUE(h_dex_cache->GetResolvedMethodType(proto_index) == nullptr); in TEST_F()