Lines Matching defs:texts
172 const char **texts;
200 texts = devm_kcalloc(dev, range->rows + 3, sizeof(*texts), GFP_KERNEL);
201 if (!texts)
208 texts[0] = "Jack Unplugged";
209 texts[1] = "Jack Unknown";
210 texts[2] = "Detection in Progress";
220 texts[i + 3] = get_terminal_name(type);
221 if (!texts[i + 3]) {
231 soc_enum->texts = texts;
520 const char **texts;
531 texts = devm_kcalloc(dev, entity->num_sources + 1, sizeof(*texts), GFP_KERNEL);
532 if (!texts)
535 texts[0] = "No Signal";
537 texts[i + 1] = entity->sources[i]->label;
542 soc_enum->texts = texts;
557 add_route(route, entity->label, texts[i + 1], entity->sources[i]->label);