Home
last modified time | relevance | path

Searched refs:type_descriptor (Results 1 – 3 of 3) sorted by relevance

/art/dexlayout/
Ddexlayout.cc436 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in IndexString() local
439 back_descriptor, name, type_descriptor.c_str(), width, index); in IndexString()
448 const char* type_descriptor = field_id->Type()->GetStringId()->Data(); in IndexString() local
451 back_descriptor, name, type_descriptor, width, index); in IndexString()
469 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in IndexString() local
471 method = StringPrintf("%s.%s:%s", back_descriptor, name, type_descriptor.c_str()); in IndexString()
1072 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in DumpBytecodes() local
1078 code_offset, code_offset, dot.c_str(), name, type_descriptor.c_str()); in DumpBytecodes()
1130 char* type_descriptor = strdup(GetSignatureForProtoId(method_id->Proto()).c_str()); in DumpMethod() local
1137 fprintf(out_file_, " type : '%s'\n", type_descriptor); in DumpMethod()
[all …]
/art/compiler/debug/
Delf_debug_info_writer.h488 void WriteLazyType(const char* type_descriptor) { in WriteLazyType() argument
489 if (type_descriptor != nullptr && type_descriptor[0] != 'V') { in WriteLazyType()
490 lazy_types_.emplace(std::string(type_descriptor), info_.size()); in WriteLazyType()
/art/runtime/
Ddex_file_verifier.cc2145 LOAD_STRING_BY_TYPE(type_descriptor, item->type_idx_, "inter_field_id_item type_idx") in CheckInterFieldIdItem()
2146 if (UNLIKELY(!IsValidDescriptor(type_descriptor) || type_descriptor[0] == 'V')) { in CheckInterFieldIdItem()
2147 ErrorStringPrintf("Invalid descriptor for type_idx: '%s'", type_descriptor); in CheckInterFieldIdItem()