Home
last modified time | relevance | path

Searched refs:method_map (Results 1 – 7 of 7) sorted by relevance

/aosp12/system/tools/aidl/
H A Daidl_to_java.cpp205 static map<string, function<void(const CodeGeneratorContext&)>> method_map{ in WriteToParcelFor()
380 const auto found = method_map.find(type_name); in WriteToParcelFor()
381 if (found != method_map.end()) { in WriteToParcelFor()
429 static map<string, function<void(const CodeGeneratorContext&)>> method_map{ in CreateFromParcelFor()
611 const auto found = method_map.find(AidlBackingTypeName(c.type, c.typenames)); in CreateFromParcelFor()
612 if (found != method_map.end()) { in CreateFromParcelFor()
647 static map<string, function<void(const CodeGeneratorContext&)>> method_map{ in ReadFromParcelFor()
754 const auto& found = method_map.find(AidlBackingTypeName(c.type, c.typenames)); in ReadFromParcelFor()
755 if (found != method_map.end()) { in ReadFromParcelFor()
/aosp12/system/extras/simpleperf/
H A Dreport_utils.cpp82 cur_class->method_map[obfuscated_methodname] = original_methodname; in AddProguardMappingFile()
230 if (auto method_it = proguard_class.method_map.find(obfuscated_methodname); in DeObfuscateJavaMethods()
231 method_it != proguard_class.method_map.end()) { in DeObfuscateJavaMethods()
H A Dreport_utils.h73 std::unordered_map<std::string, std::string> method_map; member
/aosp12/art/libprofile/profile/
H A Dprofile_compilation_info.h736 method_map(std::less<uint16_t>(), allocator->Adapter(kArenaAllocProfile)), in DexFileData()
767 method_map == other.method_map &&
813 MethodMap method_map; member
H A Dprofile_compilation_info.cc1328 for (const auto& method_it : dex_data->method_map) { in VerifyProfileData()
1958 total += dex_data->method_map.size(); in GetNumberOfMethods()
2021 for (const auto& method_it : dex_data->method_map) { in DumpInfo()
2088 for (const auto& it : dex_data->method_map) { in GetClassesAndMethods()
2244 return &(method_map.FindOrAdd( in FindOrAddHotMethod()
2301 auto it = method_map.find(dex_method_index); in GetHotnessInfo()
2302 if (it != method_map.end()) { in GetHotnessInfo()
2548 if (!method_map.empty()) { in MethodsDataSize()
2553 size_t num_hot_methods = method_map.size(); in MethodsDataSize()
2556 for (const auto& method_entry : method_map) { in MethodsDataSize()
[all …]
/aosp12/art/openjdkjvmti/
H A Dti_redefine.h250 std::map<art::ArtMethod*, art::ArtMethod*>* method_map,
H A Dti_redefine.cc2618 std::map<art::ArtMethod*, art::ArtMethod*>* method_map, in CollectNewFieldAndMethodMappings() argument
2640 (*method_map)[&m] = &(*nm_iter); in CollectNewFieldAndMethodMappings()
2771 std::map<art::ArtMethod*, art::ArtMethod*> method_map; in UpdateClassStructurally() local
2773 CollectNewFieldAndMethodMappings(holder, &method_map, &field_map); in UpdateClassStructurally()
2915 auto it = method_map.find(m); in UpdateClassStructurally()
2920 } else if (it != method_map.end()) { in UpdateClassStructurally()