Home
last modified time | relevance | path

Searched refs:class_ref (Results 1 – 4 of 4) sorted by relevance

/art/profman/
Dprofman.cc1047 /*out*/ TypeReference* class_ref) { in FindClassDef() argument
1054 *class_ref = TypeReference(dex_file.get(), type_index); in FindClassDef()
1067 /*out*/ TypeReference* class_ref) { in FindClass() argument
1072 *class_ref = TypeReference(dex_file, dex_file->GetIndexForTypeId(*type_id)); in FindClass()
1080 uint32_t FindMethodIndex(const TypeReference& class_ref, in FindMethodIndex() argument
1082 const DexFile* dex_file = class_ref.dex_file; in FindMethodIndex()
1110 dex_file->GetTypeId(class_ref.TypeIndex()), *name_id, *proto_id); in FindMethodIndex()
1120 void VisitAllInstructions(const TypeReference& class_ref, uint16_t method_idx, Visitor visitor) { in VisitAllInstructions() argument
1121 const DexFile* dex_file = class_ref.dex_file; in VisitAllInstructions()
1122 const dex::ClassDef* def = dex_file->FindClassDef(class_ref.TypeIndex()); in VisitAllInstructions()
[all …]
/art/libprofile/profile/
Dprofile_compilation_info.cc686 TypeReference class_ref) { in FindOrCreateTypeIndex() argument
687 DCHECK(class_ref.dex_file != nullptr); in FindOrCreateTypeIndex()
688 DCHECK_LT(class_ref.TypeIndex().index_, class_ref.dex_file->NumTypeIds()); in FindOrCreateTypeIndex()
689 if (class_ref.dex_file == &dex_file) { in FindOrCreateTypeIndex()
691 return class_ref.TypeIndex(); in FindOrCreateTypeIndex()
694 const char* descriptor = class_ref.dex_file->StringByTypeIdx(class_ref.TypeIndex()); in FindOrCreateTypeIndex()
1342 for (const TypeReference& class_ref : cache.classes) { in AddMethod() local
1348 dex::TypeIndex type_index = FindOrCreateTypeIndex(*pmi.ref.dex_file, class_ref); in AddMethod()
Dprofile_compilation_info.h335 dex::TypeIndex FindOrCreateTypeIndex(const DexFile& dex_file, TypeReference class_ref);
/art/dex2oat/linker/
Doat_writer.cc883 ClassReference class_ref(dex_file_, class_def_index_); in EndClass() local
885 bool found = writer_->compiler_driver_->GetCompiledClass(class_ref, &status); in EndClass()
888 if (results != nullptr && results->IsClassRejected(class_ref)) { in EndClass()