Searched refs:with_signature (Results 1 – 9 of 9) 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 | 195 MethodInfo GetMethodInfoForOffset(int64_t dex_offset, bool with_signature) { in GetMethodInfoForOffset() argument 199 with_signature, in GetMethodInfoForOffset() 209 std::vector<MethodInfo> GetAllMethodInfos(bool with_signature) { in GetAllMethodInfos() argument 212 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 | 522 std::string DexFile::PrettyMethod(uint32_t method_idx, bool with_signature) const { in PrettyMethod() 528 const ProtoId* proto_id = with_signature ? &GetProtoId(method_id.proto_idx_) : nullptr; in PrettyMethod() 529 if (with_signature) { in PrettyMethod() 536 if (with_signature) { in PrettyMethod()
|
D | dex_file.h | 750 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 | 813 std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { in PrettyMethod() argument 817 return m->PrettyMethod(with_signature); in PrettyMethod() 820 std::string ArtMethod::PrettyMethod(bool with_signature) { in PrettyMethod() argument 830 std::string res(m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature)); in PrettyMethod() 831 if (with_signature && m->IsObsolete()) { in PrettyMethod()
|
D | art_method.h | 747 static std::string PrettyMethod(ArtMethod* m, bool with_signature = true) 749 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()
|