Home
last modified time | relevance | path

Searched refs:with_signature (Results 1 – 10 of 10) sorted by relevance

/art/libdexfile/external/include/art_api/
Ddex_file_external.h70 int with_signature,
78 int with_signature,
Ddex_file_support.h182 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/
Dmethod_reference.h31 std::string PrettyMethod(bool with_signature = true) const {
32 return dex_file->PrettyMethod(index, with_signature);
Ddex_file.cc521 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()
Ddex_file.h747 std::string PrettyMethod(uint32_t method_idx, bool with_signature = true) const;
/art/libdexfile/external/
Ddex_file_ext.cc288 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/
Dart_method.cc799 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()
Dart_method.h685 static std::string PrettyMethod(ArtMethod* m, bool with_signature = true)
687 std::string PrettyMethod(bool with_signature = true)
/art/compiler/optimizing/
Dnodes.cc698 std::string HGraph::PrettyMethod(bool with_signature) const { in PrettyMethod()
699 return dex_file_.PrettyMethod(method_idx_, with_signature); in PrettyMethod()
Dnodes.h576 std::string PrettyMethod(bool with_signature = true) const;