Lines Matching refs:formatMap
38 bool PutIntValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, int32_t value) in PutIntValueToFormatMap() argument
43 auto ret = formatMap.insert(std::make_pair(std::string(key), data)); in PutIntValueToFormatMap()
47 bool PutLongValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, int64_t value) in PutLongValueToFormatMap() argument
52 auto ret = formatMap.insert(std::make_pair(std::string(key), data)); in PutLongValueToFormatMap()
56 bool PutFloatValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, float value) in PutFloatValueToFormatMap() argument
61 auto ret = formatMap.insert(std::make_pair(std::string(key), data)); in PutFloatValueToFormatMap()
65 bool PutDoubleValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, double value) in PutDoubleValueToFormatMap() argument
70 auto ret = formatMap.insert(std::make_pair(std::string(key), data)); in PutDoubleValueToFormatMap()
74 bool PutStringValueToFormatMap(FormatDataMap &formatMap, const std::string_view &key, const std::st… in PutStringValueToFormatMap() argument
79 auto ret = formatMap.insert(std::make_pair(std::string(key), data)); in PutStringValueToFormatMap()
83 bool PutBufferToFormatMap(FormatDataMap &formatMap, const std::string_view &key, uint8_t *addr, siz… in PutBufferToFormatMap() argument
90 auto ret = formatMap.insert(std::make_pair(std::string(key), data)); in PutBufferToFormatMap()