Searched refs:MethodInfo (Results 1 – 6 of 6) sorted by relevance
/art/libdexfile/external/include/art_api/ |
D | dex_file_support.h | 106 struct MethodInfo { struct 112 inline bool operator==(const MethodInfo& s1, const MethodInfo& s2) { argument 182 MethodInfo GetMethodInfoForOffset(int64_t dex_offset, bool with_signature) { in GetMethodInfoForOffset() 196 std::vector<MethodInfo> GetAllMethodInfos(bool with_signature) { in GetAllMethodInfos() 210 typedef std::vector<MethodInfo> MethodInfoVector; 212 static MethodInfo AbsorbMethodInfo(const ExtDexFileMethodInfo& ext_method_info);
|
/art/libdexfile/external/ |
D | dex_file_supp_test.cc | 188 MethodInfo info = dex_file->GetMethodInfoForOffset(0x102, false); in TEST() 209 MethodInfo info = dex_file->GetMethodInfoForOffset(0x102, true); in TEST() 236 MethodInfo info = dex_file->GetMethodInfoForOffset(0x100000, false); in TEST() 261 std::vector<MethodInfo> infos; in TEST() 262 infos.emplace_back(MethodInfo{0x100, 8, DexString("Main.<init>")}); in TEST() 263 infos.emplace_back(MethodInfo{0x118, 2, DexString("Main.main")}); in TEST() 271 std::vector<MethodInfo> infos; in TEST() 272 infos.emplace_back(MethodInfo{0x100, 8, DexString("void Main.<init>()")}); in TEST() 273 infos.emplace_back(MethodInfo{0x118, 2, DexString("void Main.main(java.lang.String[])")}); in TEST() 284 MethodInfo info = df2.GetMethodInfoForOffset(0x100, false); in TEST()
|
D | dex_file_supp.cc | 88 MethodInfo DexFile::AbsorbMethodInfo(const ExtDexFileMethodInfo& ext_method_info) { in AbsorbMethodInfo()
|
/art/test/988-method-trace/ |
D | gen_srcs.py | 168 class MethodInfo: class 229 return MethodInfo(staticness, pretty_params, method, kls)
|
/art/compiler/optimizing/ |
D | stack_map_stream.h | 108 BitTableBuilder<MethodInfo> method_infos_;
|
/art/runtime/ |
D | stack_map.h | 266 class MethodInfo : public BitTableAccessor<1> { 268 BIT_TABLE_HEADER(MethodInfo) 497 BitTable<MethodInfo> method_infos_;
|