Lines Matching refs:config
59 LOGE("check config path fail! %{public}s %{public}d %{public}s", path.c_str(), errno, ::strerror(errno));
72 LOGE("can not parse config to json");
90 BootAnimationConfig config;
93 config.picZipPath = custPicPath->valuestring;
94 LOGI("cust piczip path: %{public}s", config.picZipPath.c_str());
98 config.soundPath = custSoundPath->valuestring;
99 LOGI("cust sound path: %{public}s", config.soundPath.c_str());
103 config.videoDefaultPath = custVideoDefaultPath->valuestring;
104 LOGI("cust video path: %{public}s", config.videoDefaultPath.c_str());
108 config.videoExtraPath = custVideoExtraPath->valuestring;
109 LOGI("cust extra video path: %{public}s", config.videoExtraPath.c_str());
113 config.rotateScreenId = std::atoi(rotateScreenJson->valuestring);
114 LOGI("cust rotateScreenId: %{public}d", config.rotateScreenId);
118 config.rotateDegree = std::atoi(rotateDegreeJson->valuestring);
119 LOGI("cust rotateDegree: %{public}d", config.rotateDegree);
121 configs.emplace_back(config);
137 BootAnimationConfig config;
142 config.screenId = std::strtoul(screenIdJson->valuestring, nullptr, 0);
143 LOGI("screenId: " BPUBU64 "", config.screenId);
147 config.picZipPath = custPicPath->valuestring;
148 LOGI("cust piczip path: %{public}s", config.picZipPath.c_str());
152 config.soundPath = custSoundPath->valuestring;
153 LOGI("cust sound path: %{public}s", config.soundPath.c_str());
157 config.videoDefaultPath = custVideoDefaultPath->valuestring;
158 LOGI("cust default video path: %{public}s", config.videoDefaultPath.c_str());
162 config.rotateDegree = std::atoi(rotateDegreeJson->valuestring);
163 LOGI("cust rotateDegree: %{public}d", config.rotateDegree);
167 ParseVideoExtraPath(extraVideoPath, config);
169 configs.emplace_back(config);
175 void ParseVideoExtraPath(cJSON* data, BootAnimationConfig& config)
181 config.videoExtPath.emplace_back(extraPath->valuestring);
308 LOGE("parse image config failed");