Home
last modified time | relevance | path

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

/art/tools/veridex/
Dveridex.h39 using VeriMethod = const uint8_t*; variable
83 static VeriMethod forName_;
84 static VeriMethod getField_;
85 static VeriMethod getDeclaredField_;
86 static VeriMethod getMethod_;
87 static VeriMethod getDeclaredMethod_;
88 static VeriMethod getClass_;
89 static VeriMethod loadClass_;
99 inline bool IsGetMethod(VeriMethod method) { in IsGetMethod()
103 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_;
Dveridex.cc59 VeriMethod VeriClass::forName_ = nullptr;
60 VeriMethod VeriClass::getField_ = nullptr;
61 VeriMethod VeriClass::getDeclaredField_ = nullptr;
62 VeriMethod VeriClass::getMethod_ = nullptr;
63 VeriMethod VeriClass::getDeclaredMethod_ = nullptr;
64 VeriMethod VeriClass::getClass_ = nullptr;
65 VeriMethod VeriClass::loadClass_ = nullptr;
Dresolver.cc135 VeriMethod VeridexResolver::LookupMethodIn(const VeriClass& kls, in LookupMethodIn()
170 VeriMethod super_method = resolver->LookupMethodIn(*super, method_name, method_signature); in LookupMethodIn()
184 VeriMethod itf_method = resolver->LookupMethodIn(*itf, method_name, method_signature); in LookupMethodIn()
252 VeriMethod VeridexResolver::LookupDeclaredMethodIn(const VeriClass& kls, in LookupDeclaredMethodIn()
280 VeriMethod VeridexResolver::GetMethod(uint32_t method_index) { in GetMethod()
281 VeriMethod method_info = method_infos_[method_index]; in GetMethod()
Dflow_analysis.cc681 VeriMethod method = resolver_->GetMethod(id); in AnalyzeInvoke()