Searched refs:supported_values (Results 1 – 1 of 1) sorted by relevance
53 bool CheckParameterValue(const char* value, const char** supported_values) { in CheckParameterValue() argument54 for (int index = 0; supported_values[index] != NULL; ++index) { in CheckParameterValue()55 if (!strcmp(value, supported_values[index])) return true; in CheckParameterValue()