Lines Matching defs:key
52 const std::string_view &key, const std::string &name)
54 CHECK_AND_RETURN_RET_LOG(!key.empty(), AVCS_ERR_INVALID_VAL, "Add dump info failed, get a empty key.");
58 switch (format.GetValueType(key)) {
61 ret = format.GetIntValue(key, valueTemp);
67 ret = format.GetLongValue(key, valueTemp);
73 ret = format.GetFloatValue(key, valueTemp);
79 ret = format.GetDoubleValue(key, valueTemp);
84 ret = format.GetStringValue(key, value);
90 AVCODEC_LOGE("Add info from format failed. Key: %{public}s", key.data());
101 const Format &format, const std::string_view &key,
106 if (format.GetIntValue(key, val) == true) {