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.h195 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/
Dmethod_reference.h31 std::string PrettyMethod(bool with_signature = true) const {
32 return dex_file->PrettyMethod(index, with_signature);
Ddex_file.cc522 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()
Ddex_file.h750 std::string PrettyMethod(uint32_t method_idx, bool with_signature = true) const;
/art/libdexfile/external/
Ddex_file_ext.cc331 int with_signature, in ExtDexFileGetMethodInfoForOffset() argument
354 new ExtDexFileString{ext_dex_file->dex_file_->PrettyMethod(entry->index, with_signature)}; in ExtDexFileGetMethodInfoForOffset()
362 int with_signature, in ExtDexFileGetAllMethodInfos() argument
377 ext_dex_file->dex_file_->PrettyMethod(method.GetIndex(), with_signature)}; in ExtDexFileGetAllMethodInfos()
/art/runtime/
Dart_method.cc803 std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { in PrettyMethod() argument
807 return m->PrettyMethod(with_signature); in PrettyMethod()
810 std::string ArtMethod::PrettyMethod(bool with_signature) { in PrettyMethod() argument
820 std::string res(m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature)); in PrettyMethod()
821 if (with_signature && m->IsObsolete()) { in PrettyMethod()
Dart_method.h745 static std::string PrettyMethod(ArtMethod* m, bool with_signature = true)
747 std::string PrettyMethod(bool with_signature = true)
/art/compiler/optimizing/
Dnodes.cc697 std::string HGraph::PrettyMethod(bool with_signature) const { in PrettyMethod()
698 return dex_file_.PrettyMethod(method_idx_, with_signature); in PrettyMethod()
Dnodes.h637 std::string PrettyMethod(bool with_signature = true) const;