Searched refs:name_map (Results 1 – 3 of 3) sorted by relevance
111 def get_name(pid, name_map): argument112 if pid in name_map:113 return name_map[pid]115 if pid_str in name_map:116 return name_map[pid_str]
49 node.name_map[result->entry_name()] = result; in FindElfInApkByOffset()57 auto it = node.name_map.find(entry_name); in FindElfInApkByName()58 if (it != node.name_map.end()) { in FindElfInApkByName()63 node.name_map[entry_name] = result; in FindElfInApkByName()
85 std::unordered_map<std::string, EmbeddedElf*> name_map; member