Home
last modified time | relevance | path

Searched refs:dex_class_def (Results 1 – 5 of 5) sorted by relevance

/art/runtime/native/
Ddalvik_system_DexFile.cc163 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor.c_str()); in DexFile_defineClassNative() local
164 if (dex_class_def == NULL) { in DexFile_defineClassNative()
172 *dex_class_def); in DexFile_defineClassNative()
/art/runtime/
Dclass_linker.h77 const DexFile& dex_file, const DexFile::ClassDef& dex_class_def)
405 void ConstructFieldMap(const DexFile& dex_file, const DexFile::ClassDef& dex_class_def,
410 const DexFile::ClassDef& dex_class_def);
413 const DexFile::ClassDef& dex_class_def,
Dclass_linker.cc1385 const DexFile::ClassDef& dex_class_def) { in DefineClass() argument
1404 klass.reset(AllocClass(self, SizeOfClass(dex_file, dex_class_def))); in DefineClass()
1407 klass.reset(AllocClass(self, SizeOfClass(dex_file, dex_class_def))); in DefineClass()
1414 LoadClass(dex_file, dex_class_def, klass, class_loader); in DefineClass()
1466 const DexFile::ClassDef& dex_class_def) { in SizeOfClass() argument
1467 const byte* class_data = dex_file.GetClassData(dex_class_def); in SizeOfClass()
1634 const DexFile::ClassDef* dex_class_def = kh.GetClassDef(); in FixupStaticTrampolines() local
1635 CHECK(dex_class_def != NULL); in FixupStaticTrampolines()
1637 const byte* class_data = dex_file.GetClassData(*dex_class_def); in FixupStaticTrampolines()
1719 const DexFile::ClassDef& dex_class_def, in LoadClass() argument
[all …]
Dobject_utils.h187 const DexFile::ClassDef* dex_class_def = GetClassDef(); in GetSourceFile() local
188 CHECK(dex_class_def != NULL); in GetSourceFile()
189 return dex_file.GetSourceFile(*dex_class_def); in GetSourceFile()
Ddex_file.cc55 const DexFile::ClassDef* dex_class_def = dex_file->FindClassDef(descriptor); in FindInClassPath() local
56 if (dex_class_def != NULL) { in FindInClassPath()
57 return ClassPathEntry(dex_file, dex_class_def); in FindInClassPath()