Lines Matching refs:kCvdFiles
37 const char* kCvdFiles = "cvd_files"; variable
145 if (base_dir != "." && dictionary_->isMember(kCvdFiles)) { in LoadFromFile()
147 for (const auto& member_name : (*dictionary_)[kCvdFiles].getMemberNames()) { in LoadFromFile()
148 (*dictionary_)[kCvdFiles][base_dir + "/" + member_name] = in LoadFromFile()
149 (*dictionary_)[kCvdFiles][member_name]; in LoadFromFile()
150 (*dictionary_)[kCvdFiles].removeMember(member_name); in LoadFromFile()
206 if (!dictionary_->isMember(kCvdFiles)) { in add_cvd_file()
208 (*dictionary_)[kCvdFiles] = files_json; in add_cvd_file()
210 if ((*dictionary_)[kCvdFiles].isMember(file.file_path) && !override_entry) { in add_cvd_file()
213 (*dictionary_)[kCvdFiles][file.file_path] = CvdFileToJson(file); in add_cvd_file()
218 if (!dictionary_->isMember(kCvdFiles)) { in get_cvd_files()
222 const auto& json_files = (*dictionary_)[kCvdFiles]; in get_cvd_files()
230 if (!dictionary_->isMember(kCvdFiles)) { in FindCvdFileWithSuffix()
233 const auto& json_files = (*dictionary_)[kCvdFiles]; in FindCvdFileWithSuffix()