Lines Matching refs:map
33 using jsonStringMap = std::map<std::string, std::string>;
131 void OutputJsonMapList(FILE *output, const std::string &key, const std::map<K, V> &value,
155 void OutputJsonMap(FILE *output, const std::string &key, const std::map<K, V> &value,
176 V &GetOrCreateMapItem(std::map<K, V> &map, const K &key) in GetOrCreateMapItem() argument
178 if (map.count(key) == 0) { in GetOrCreateMapItem()
179 map.emplace(key, (key)); in GetOrCreateMapItem()
180 return map.at(key); in GetOrCreateMapItem()
182 return map.at(key); in GetOrCreateMapItem()
232 std::map<int, ReportCallNodeItem> childrenMap;
275 std::map<int, ReportFuncItem> funcs_;
294 std::map<int, ReportLibItem> libs_;
318 std::map<pid_t, ReportThreadItem> threads_;
338 std::map<pid_t, ReportProcessItem> processes_;
378 std::map<std::vector<uint64_t>, ReportConfigItem> reportConfigItems_;
385 std::map<int, ReportFuncMapItem> functionMap_;