• Home
  • Raw
  • Download

Lines Matching refs:kh

396   ClassHelper kh(class_array_class.get(), this);  in InitFromCompiler()  local
397 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0)); in InitFromCompiler()
398 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1)); in InitFromCompiler()
399 kh.ChangeClass(object_array_class.get()); in InitFromCompiler()
400 CHECK_EQ(java_lang_Cloneable, kh.GetDirectInterface(0)); in InitFromCompiler()
401 CHECK_EQ(java_io_Serializable, kh.GetDirectInterface(1)); in InitFromCompiler()
1633 ClassHelper kh(klass); in FixupStaticTrampolines() local
1634 const DexFile::ClassDef* dex_class_def = kh.GetClassDef(); in FixupStaticTrampolines()
1636 const DexFile& dex_file = kh.GetDexFile(); in FixupStaticTrampolines()
1880 ClassHelper kh(klass.get()); in LoadMethod() local
1881 StringPiece klass_descriptor(kh.GetDescriptor()); in LoadMethod()
2227 ClassHelper kh; in RemoveClass() local
2231 kh.ChangeClass(klass); in RemoveClass()
2232 if (strcmp(kh.GetDescriptor(), descriptor) == 0 && klass->GetClassLoader() == class_loader) { in RemoveClass()
2273 ClassHelper kh(NULL, this); in LookupClassFromTableLocked() local
2277 kh.ChangeClass(klass); in LookupClassFromTableLocked()
2278 if (klass->GetClassLoader() == class_loader && strcmp(descriptor, kh.GetDescriptor()) == 0) { in LookupClassFromTableLocked()
2283 kh.ChangeClass(klass2); in LookupClassFromTableLocked()
2284 … CHECK(!(strcmp(descriptor, kh.GetDescriptor()) == 0 && klass2->GetClassLoader() == class_loader)) in LookupClassFromTableLocked()
2312 ClassHelper kh(NULL, this); in MoveImageClassesToClassTable() local
2319 kh.ChangeClass(klass); in MoveImageClassesToClassTable()
2321 const char* descriptor = kh.GetDescriptor(); in MoveImageClassesToClassTable()
2387 ClassHelper kh(NULL, this); in LookupClasses() local
2391 kh.ChangeClass(klass); in LookupClasses()
2392 if (strcmp(descriptor, kh.GetDescriptor()) == 0) { in LookupClasses()
2913 ClassHelper kh(klass); in CanWeInitializeClass() local
2914 const DexFile::ClassDef* dex_class_def = kh.GetClassDef(); in CanWeInitializeClass()
3037 ClassHelper kh(klass); in InitializeClass() local
3038 const DexFile::ClassDef* dex_class_def = kh.GetClassDef(); in InitializeClass()
3040 const DexFile& dex_file = kh.GetDexFile(); in InitializeClass()
3041 EncodedStaticFieldValueIterator it(dex_file, kh.GetDexCache(), klass->GetClassLoader(), in InitializeClass()
3088 ClassHelper kh(klass); in InitializeClass() local
3089 LOG(INFO) << "Initialized class " << kh.GetDescriptor() << " from " << kh.GetLocation(); in InitializeClass()
3490 ClassHelper kh(klass.get(), this); in LinkInterfaceMethods() local
3491 uint32_t num_interfaces = interfaces == NULL ? kh.NumDirectInterfaces() : interfaces->GetLength(); in LinkInterfaceMethods()
3494 mirror::Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i); in LinkInterfaceMethods()
3535 mirror::Class* interface = interfaces == NULL ? kh.GetDirectInterface(i) : interfaces->Get(i); in LinkInterfaceMethods()