Lines Matching refs:dex_cache

397 ArtMethod* Class::FindInterfaceMethod(const DexCache* dex_cache, uint32_t dex_method_idx) {  in FindInterfaceMethod()  argument
399 ArtMethod* method = FindDeclaredVirtualMethod(dex_cache, dex_method_idx); in FindInterfaceMethod()
407 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(dex_cache, dex_method_idx); in FindInterfaceMethod()
435 ArtMethod* Class::FindDeclaredDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) { in FindDeclaredDirectMethod() argument
436 if (GetDexCache() == dex_cache) { in FindDeclaredDirectMethod()
467 ArtMethod* Class::FindDirectMethod(const DexCache* dex_cache, uint32_t dex_method_idx) { in FindDirectMethod() argument
469 ArtMethod* method = klass->FindDeclaredDirectMethod(dex_cache, dex_method_idx); in FindDirectMethod()
497 ArtMethod* Class::FindDeclaredVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) { in FindDeclaredVirtualMethod() argument
498 if (GetDexCache() == dex_cache) { in FindDeclaredVirtualMethod()
532 ArtMethod* Class::FindVirtualMethod(const DexCache* dex_cache, uint32_t dex_method_idx) { in FindVirtualMethod() argument
534 ArtMethod* method = klass->FindDeclaredVirtualMethod(dex_cache, dex_method_idx); in FindVirtualMethod()
566 ArtField* Class::FindDeclaredInstanceField(const DexCache* dex_cache, uint32_t dex_field_idx) { in FindDeclaredInstanceField() argument
567 if (GetDexCache() == dex_cache) { in FindDeclaredInstanceField()
590 ArtField* Class::FindInstanceField(const DexCache* dex_cache, uint32_t dex_field_idx) { in FindInstanceField() argument
594 ArtField* f = c->FindDeclaredInstanceField(dex_cache, dex_field_idx); in FindInstanceField()
613 ArtField* Class::FindDeclaredStaticField(const DexCache* dex_cache, uint32_t dex_field_idx) { in FindDeclaredStaticField() argument
614 if (dex_cache == GetDexCache()) { in FindDeclaredStaticField()
651 ArtField* Class::FindStaticField(Thread* self, Handle<Class> klass, const DexCache* dex_cache, in FindStaticField() argument
655 ArtField* f = k->FindDeclaredStaticField(dex_cache, dex_field_idx); in FindStaticField()
666 f = FindStaticField(self, interface, dex_cache, dex_field_idx); in FindStaticField()
797 mirror::DexCache* dex_cache = GetDexCache(); in GetLocation() local
798 if (dex_cache != nullptr && !IsProxyClass()) { in GetLocation()
799 return dex_cache->GetLocation()->ToModifiedUtf8(); in GetLocation()