MCPcopy Create free account
hub / github.com/coreboot/coreboot / get_relations_str

Function get_relations_str

util/kconfig/menu.c:827–838  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

825}
826
827struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head)
828{
829 struct symbol *sym;
830 struct gstr res = str_new();
831 int i;
832
833 for (i = 0; sym_arr && (sym = sym_arr[i]); i++)
834 get_symbol_str(&res, sym, head);
835 if (!i)
836 str_append(&res, "No matches found.\n");
837 return res;
838}
839
840
841void menu_get_ext_help(struct menu *menu, struct gstr *help)

Callers 2

search_confFunction · 0.85
search_confFunction · 0.85

Calls 3

str_newFunction · 0.85
get_symbol_strFunction · 0.85
str_appendFunction · 0.85

Tested by

no test coverage detected