Lines Matching refs:name
34 int32_t AVCodecDumpControler::AddInfo(const uint32_t dumpIdx, const std::string &name, const std::string &value)
38 CHECK_AND_RETURN_RET_LOG(!name.empty(), AVCS_ERR_INVALID_VAL,
39 "Add dump info failed, get a empty name.");
41 AVCODEC_LOGW("Dump info index already exist, index: %{public}d, name: %{public}s.", dumpIdx, name.c_str());
46 length_[level - 1] = length_[level - 1] > name.length() ? length_[level - 1] : name.length();
47 dumpInfoMap_.emplace(dumpIdx, make_pair(name, value));
52 const std::string_view &key, const std::string &name)
96 this->AddInfo(dumpIdx, name, value);
102 const std::string &name,
109 AddInfo(dumpIdx, name, mappingString);
120 std::string name = iter.second.first;
123 + name + std::string(length_[level - 1] - name.length(), ' ');