Home
last modified time | relevance | path

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

/art/runtime/
Dsdk_checker.h62 bool ShouldDenyAccess(std::string_view type_descriptor) const;
Dsdk_checker.cc98 std::string_view type_descriptor = art_field->GetTypeDescriptorView(); in ShouldDenyAccess() local
110 const dex::TypeId* type_id = dex_file->FindTypeId(type_descriptor); in ShouldDenyAccess()
Dclass_linker.h889 virtual bool DenyAccessBasedOnPublicSdk(std::string_view type_descriptor) const;
Dclass_linker.cc11161 [[maybe_unused]] std::string_view type_descriptor) const { in DenyAccessBasedOnPublicSdk()
/art/compiler/debug/
Delf_debug_info_writer.h497 void WriteLazyType(const char* type_descriptor) { in WriteLazyType() argument
498 if (type_descriptor != nullptr && type_descriptor[0] != 'V') { in WriteLazyType()
499 lazy_types_.emplace(std::string(type_descriptor), info_.size()); in WriteLazyType()
/art/runtime/oat/
Daot_class_linker.cc248 bool AotClassLinker::DenyAccessBasedOnPublicSdk(std::string_view type_descriptor) const { in DenyAccessBasedOnPublicSdk()
249 return sdk_checker_ != nullptr && sdk_checker_->ShouldDenyAccess(type_descriptor); in DenyAccessBasedOnPublicSdk()
Daot_class_linker.h57 bool DenyAccessBasedOnPublicSdk(std::string_view type_descriptor) const override;