(config_name, platform_name)
| 308 | |
| 309 | |
| 310 | def _ConfigBaseName(config_name, platform_name): |
| 311 | if config_name.endswith("_" + platform_name): |
| 312 | return config_name[0 : -len(platform_name) - 1] |
| 313 | else: |
| 314 | return config_name |
| 315 | |
| 316 | |
| 317 | def _ConfigFullName(config_name, config_data): |
no outgoing calls
no test coverage detected