Home
last modified time | relevance | path

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

/art/runtime/
Dsdk_checker.h61 bool ShouldDenyAccess(const char* type_descriptor) const;
Daot_class_linker.h48 bool DenyAccessBasedOnPublicSdk(const char* type_descriptor ATTRIBUTE_UNUSED) const override;
Daot_class_linker.cc263 bool AotClassLinker::DenyAccessBasedOnPublicSdk(const char* type_descriptor) const { in DenyAccessBasedOnPublicSdk()
264 return sdk_checker_ != nullptr && sdk_checker_->ShouldDenyAccess(type_descriptor); in DenyAccessBasedOnPublicSdk()
Dclass_linker.h846 virtual bool DenyAccessBasedOnPublicSdk(const char* type_descriptor) const;
Dclass_linker.cc10235 bool ClassLinker::DenyAccessBasedOnPublicSdk(const char* type_descriptor ATTRIBUTE_UNUSED) const { in DenyAccessBasedOnPublicSdk()
/art/dexlayout/
Ddexlayout.cc426 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in IndexString() local
429 back_descriptor, name, type_descriptor.c_str(), width, index); in IndexString()
438 const char* type_descriptor = field_id->Type()->GetStringId()->Data(); in IndexString() local
441 back_descriptor, name, type_descriptor, width, index); in IndexString()
459 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in IndexString() local
461 method = StringPrintf("%s.%s:%s", back_descriptor, name, type_descriptor.c_str()); in IndexString()
1030 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in DumpBytecodes() local
1036 code_offset, code_offset, dot.c_str(), name, type_descriptor.c_str()); in DumpBytecodes()
1172 char* type_descriptor = strdup(GetSignatureForProtoId(method_id->Proto()).c_str()); in DumpMethod() local
1179 fprintf(out_file_, " type : '%s'\n", type_descriptor); in DumpMethod()
[all …]
/art/compiler/debug/
Delf_debug_info_writer.h494 void WriteLazyType(const char* type_descriptor) { in WriteLazyType() argument
495 if (type_descriptor != nullptr && type_descriptor[0] != 'V') { in WriteLazyType()
496 lazy_types_.emplace(std::string(type_descriptor), info_.size()); in WriteLazyType()