Lines Matching defs:map
23 #include <map>
33 using jsonStringMap = std::map<std::string, std::string>;
133 void OutputJsonMapList(FILE *output, const std::string &key, const std::map<K, V> &value,
157 void OutputJsonMap(FILE *output, const std::string &key, const std::map<K, V> &value,
178 V &GetOrCreateMapItem(std::map<K, V> &map, const K &key)
180 if (map.count(key) == 0) {
181 map.emplace(key, (key));
183 return map.at(key);
234 std::map<int, ReportCallNodeItem> childrenMap;
277 std::map<int, ReportFuncItem> funcs_;
296 std::map<int, ReportLibItem> libs_;
320 std::map<pid_t, ReportThreadItem> threads_;
340 std::map<pid_t, ReportProcessItem> processes_;
379 std::map<std::vector<uint64_t>, ReportConfigItem> reportConfigItems_;
386 std::map<int, std::map<std::string, ReportFuncMapItem>> functionMap_;