Home | History | Annotate | Download | only in runtime

Lines Matching refs:kh

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