Searched refs:with_signature (Results 1 – 10 of 10) sorted by relevance
/art/libdexfile/external/include/art_api/ |
D | dex_file_external.h | 70 int with_signature, 78 int with_signature,
|
D | dex_file_support.h | 182 MethodInfo GetMethodInfoForOffset(int64_t dex_offset, bool with_signature) { in GetMethodInfoForOffset() argument 186 with_signature, in GetMethodInfoForOffset() 196 std::vector<MethodInfo> GetAllMethodInfos(bool with_signature) { in GetAllMethodInfos() argument 199 with_signature, in GetAllMethodInfos()
|
/art/libdexfile/dex/ |
D | method_reference.h | 31 std::string PrettyMethod(bool with_signature = true) const { 32 return dex_file->PrettyMethod(index, with_signature);
|
D | dex_file.cc | 521 std::string DexFile::PrettyMethod(uint32_t method_idx, bool with_signature) const { in PrettyMethod() 527 const ProtoId* proto_id = with_signature ? &GetProtoId(method_id.proto_idx_) : nullptr; in PrettyMethod() 528 if (with_signature) { in PrettyMethod() 535 if (with_signature) { in PrettyMethod()
|
D | dex_file.h | 747 std::string PrettyMethod(uint32_t method_idx, bool with_signature = true) const;
|
/art/libdexfile/external/ |
D | dex_file_ext.cc | 288 int with_signature, in ExtDexFileGetMethodInfoForOffset() argument 311 new ExtDexFileString{ext_dex_file->dex_file_->PrettyMethod(entry->index, with_signature)}; in ExtDexFileGetMethodInfoForOffset() 319 int with_signature, in ExtDexFileGetAllMethodInfos() argument 334 ext_dex_file->dex_file_->PrettyMethod(method.GetIndex(), with_signature)}; in ExtDexFileGetAllMethodInfos()
|
/art/runtime/ |
D | art_method.cc | 799 std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { in PrettyMethod() argument 803 return m->PrettyMethod(with_signature); in PrettyMethod() 806 std::string ArtMethod::PrettyMethod(bool with_signature) { in PrettyMethod() argument 816 std::string res(m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature)); in PrettyMethod() 817 if (with_signature && m->IsObsolete()) { in PrettyMethod()
|
D | art_method.h | 685 static std::string PrettyMethod(ArtMethod* m, bool with_signature = true) 687 std::string PrettyMethod(bool with_signature = true)
|
/art/compiler/optimizing/ |
D | nodes.cc | 698 std::string HGraph::PrettyMethod(bool with_signature) const { in PrettyMethod() 699 return dex_file_.PrettyMethod(method_idx_, with_signature); in PrettyMethod()
|
D | nodes.h | 576 std::string PrettyMethod(bool with_signature = true) const;
|