Lines Matching refs:disk_class_def
479 const dex::ClassDef& disk_class_def = dex_file.GetClassDef(i); in CreateClassDef() local
480 const TypeId* class_type = header_->TypeIds()[disk_class_def.class_idx_.index_]; in CreateClassDef()
481 uint32_t access_flags = disk_class_def.access_flags_; in CreateClassDef()
482 const TypeId* superclass = header_->GetTypeIdOrNullPtr(disk_class_def.superclass_idx_.index_); in CreateClassDef()
484 const dex::TypeList* type_list = dex_file.GetInterfacesList(disk_class_def); in CreateClassDef()
485 TypeList* interfaces_type_list = CreateTypeList(type_list, disk_class_def.interfaces_off_); in CreateClassDef()
488 header_->GetStringIdOrNullPtr(disk_class_def.source_file_idx_.index_); in CreateClassDef()
492 dex_file.GetAnnotationsDirectory(disk_class_def); in CreateClassDef()
495 dex_file, disk_annotations_directory_item, disk_class_def.annotations_off_); in CreateClassDef()
498 const uint8_t* static_data = dex_file.GetEncodedStaticFieldValuesArray(disk_class_def); in CreateClassDef()
500 CreateEncodedArrayItem(dex_file, static_data, disk_class_def.static_values_off_); in CreateClassDef()
501 ClassData* class_data = CreateClassData(dex_file, disk_class_def); in CreateClassDef()