Searched refs:type_descriptor (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | sdk_checker.h | 61 bool ShouldDenyAccess(const char* type_descriptor) const;
|
D | aot_class_linker.h | 46 bool DenyAccessBasedOnPublicSdk(const char* type_descriptor ATTRIBUTE_UNUSED) const override;
|
D | aot_class_linker.cc | 220 bool AotClassLinker::DenyAccessBasedOnPublicSdk(const char* type_descriptor) const { in DenyAccessBasedOnPublicSdk() 221 return sdk_checker_ != nullptr && sdk_checker_->ShouldDenyAccess(type_descriptor); in DenyAccessBasedOnPublicSdk()
|
D | class_linker.h | 837 virtual bool DenyAccessBasedOnPublicSdk(const char* type_descriptor) const;
|
D | class_linker.cc | 10289 bool ClassLinker::DenyAccessBasedOnPublicSdk(const char* type_descriptor ATTRIBUTE_UNUSED) const { in DenyAccessBasedOnPublicSdk()
|
/art/dexlayout/ |
D | dexlayout.cc | 491 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in IndexString() local 494 back_descriptor, name, type_descriptor.c_str(), width, index); in IndexString() 503 const char* type_descriptor = field_id->Type()->GetStringId()->Data(); in IndexString() local 506 back_descriptor, name, type_descriptor, width, index); in IndexString() 524 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in IndexString() local 526 method = StringPrintf("%s.%s:%s", back_descriptor, name, type_descriptor.c_str()); in IndexString() 1095 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in DumpBytecodes() local 1101 code_offset, code_offset, dot.c_str(), name, type_descriptor.c_str()); in DumpBytecodes() 1239 char* type_descriptor = strdup(GetSignatureForProtoId(method_id->Proto()).c_str()); in DumpMethod() local 1246 fprintf(out_file_, " type : '%s'\n", type_descriptor); in DumpMethod() [all …]
|
/art/compiler/debug/ |
D | elf_debug_info_writer.h | 494 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()
|