| 380 | } |
| 381 | |
| 382 | static std::string GetFileSettingName(const char *pLayerName, const char *pSettingName) { |
| 383 | assert(pLayerName != nullptr); |
| 384 | assert(pSettingName != nullptr); |
| 385 | |
| 386 | std::stringstream settingName; |
| 387 | settingName << ToLowerCase(TrimPrefix(pLayerName)) << "." << pSettingName; |
| 388 | |
| 389 | return settingName.str(); |
| 390 | } |
| 391 | |
| 392 | static std::string GetEnvSettingName(const char *layer_key, const char *requested_prefix, const char *setting_key, |
| 393 | TrimMode trim_mode, bool android_sysprop) { |
no test coverage detected