Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Dreport_utils.cpp98 auto& method_map = mapping_class.method_map; in ParseMethod() local
99 if (auto it = method_map.find(obfuscated_methodname); it != method_map.end()) { in ParseMethod()
108 auto& method = method_map[obfuscated_methodname]; in ParseMethod()
160 const auto& method_map = mapping_class.method_map; in DeObfuscateJavaMethods() local
163 if (auto method_it = method_map.find(obfuscated_methodname); method_it != method_map.end()) { in DeObfuscateJavaMethods()
Dreport_utils.h52 std::unordered_map<std::string, MappingMethod> method_map; member
/system/tools/aidl/
Daidl_to_java.cpp336 static map<string, function<void(const CodeGeneratorContext&)>> method_map{ in WriteToParcelFor()
520 const auto found = method_map.find(type_name); in WriteToParcelFor()
521 if (found != method_map.end()) { in WriteToParcelFor()
568 static map<string, function<void(const CodeGeneratorContext&)>> method_map{ in CreateFromParcelFor()
748 const auto found = method_map.find(AidlBackingTypeName(c.type)); in CreateFromParcelFor()
749 if (found != method_map.end()) { in CreateFromParcelFor()
795 static map<string, function<void(const CodeGeneratorContext&)>> method_map{ in ReadFromParcelFor()
906 const auto& found = method_map.find(AidlBackingTypeName(c.type)); in ReadFromParcelFor()
907 if (found != method_map.end()) { in ReadFromParcelFor()