Home
last modified time | relevance | path

Searched refs:ext_method_info (Results 1 – 3 of 3) sorted by relevance

/art/libdexfile/external/
Ddex_file_supp.cc108 MethodInfo DexFile::AbsorbMethodInfo(const ExtDexFileMethodInfo& ext_method_info) { in AbsorbMethodInfo() argument
109 return {ext_method_info.offset, ext_method_info.len, DexString(ext_method_info.name)}; in AbsorbMethodInfo()
112 void DexFile::AddMethodInfoCallback(const ExtDexFileMethodInfo* ext_method_info, void* ctx) { in AddMethodInfoCallback() argument
114 vect->emplace_back(AbsorbMethodInfo(*ext_method_info)); in AddMethodInfoCallback()
/art/libdexfile/external/include/art_api/
Ddex_file_support.h196 ExtDexFileMethodInfo ext_method_info; in GetMethodInfoForOffset() local
200 &ext_method_info)) { in GetMethodInfoForOffset()
201 return AbsorbMethodInfo(ext_method_info); in GetMethodInfoForOffset()
225 static MethodInfo AbsorbMethodInfo(const ExtDexFileMethodInfo& ext_method_info);
226 static void AddMethodInfoCallback(const ExtDexFileMethodInfo* ext_method_info, void* user_data);
Ddex_file_external.h73 typedef void ExtDexFileMethodInfoCallback(const struct ExtDexFileMethodInfo* ext_method_info,