Lines Matching refs:formatMap
38 bool PutIntValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, int32_t value)
43 auto ret = formatMap.insert(std::make_pair(std::string(key), data));
47 bool PutLongValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, int64_t value)
52 auto ret = formatMap.insert(std::make_pair(std::string(key), data));
56 bool PutFloatValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, float value)
61 auto ret = formatMap.insert(std::make_pair(std::string(key), data));
65 bool PutDoubleValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, double value)
70 auto ret = formatMap.insert(std::make_pair(std::string(key), data));
74 bool PutStringValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, const std::string_view &value)
79 auto ret = formatMap.insert(std::make_pair(std::string(key), data));
83 bool PutBufferToFormatMap(FormatDataMap &formatMap, const std::string_view &key, uint8_t *addr, size_t size)
90 auto ret = formatMap.insert(std::make_pair(std::string(key), data));
370 FALSE_LOG_MSG(ret, "Put value to formatMap failed, key = %{public}s", iter->first.c_str());