Home
last modified time | relevance | path

Searched refs:VeriMethod (Results 1 – 5 of 5) sorted by relevance

/art/tools/veridex/
Dveridex.h42 using VeriMethod = const uint8_t*; variable
85 static VeriMethod forName_;
86 static VeriMethod getField_;
87 static VeriMethod getDeclaredField_;
88 static VeriMethod getMethod_;
89 static VeriMethod getDeclaredMethod_;
90 static VeriMethod getClass_;
91 static VeriMethod loadClass_;
101 inline bool IsGetMethod(VeriMethod method) { in IsGetMethod()
105 inline bool IsGetField(VeriMethod method) { in IsGetField()
Dresolver.h54 VeriMethod GetMethod(uint32_t method_index);
60 VeriMethod LookupMethodIn(const VeriClass& kls,
70 VeriMethod LookupDeclaredMethodIn(const VeriClass& kls,
94 std::vector<VeriMethod> method_infos_;
Dresolver.cc125 VeriMethod VeridexResolver::LookupMethodIn(const VeriClass& kls, in LookupMethodIn()
156 VeriMethod super_method = resolver->LookupMethodIn(*super, method_name, method_signature); in LookupMethodIn()
170 VeriMethod itf_method = resolver->LookupMethodIn(*itf, method_name, method_signature); in LookupMethodIn()
235 VeriMethod VeridexResolver::LookupDeclaredMethodIn(const VeriClass& kls, in LookupDeclaredMethodIn()
258 VeriMethod VeridexResolver::GetMethod(uint32_t method_index) { in GetMethod()
259 VeriMethod method_info = method_infos_[method_index]; in GetMethod()
Dveridex.cc60 VeriMethod VeriClass::forName_ = nullptr;
61 VeriMethod VeriClass::getField_ = nullptr;
62 VeriMethod VeriClass::getDeclaredField_ = nullptr;
63 VeriMethod VeriClass::getMethod_ = nullptr;
64 VeriMethod VeriClass::getDeclaredMethod_ = nullptr;
65 VeriMethod VeriClass::getClass_ = nullptr;
66 VeriMethod VeriClass::loadClass_ = nullptr;
Dflow_analysis.cc689 VeriMethod method = resolver_->GetMethod(id); in AnalyzeInvoke()