Home
last modified time | relevance | path

Searched refs:sym_arr (Results 1 – 2 of 2) sorted by relevance

/scripts/kconfig/
Dmconf.c347 static struct gstr get_relations_str(struct symbol **sym_arr) in get_relations_str() argument
353 for (i = 0; sym_arr && (sym = sym_arr[i]); i++) in get_relations_str()
384 struct symbol **sym_arr; in search_conf() local
409 sym_arr = sym_re_search(dialog_input); in search_conf()
410 res = get_relations_str(sym_arr); in search_conf()
411 free(sym_arr); in search_conf()
Dsymbol.c728 struct symbol *sym, **sym_arr = NULL; in sym_re_search() local
745 void *tmp = sym_arr; in sym_re_search()
747 sym_arr = realloc(sym_arr, size * sizeof(struct symbol *)); in sym_re_search()
748 if (!sym_arr) { in sym_re_search()
753 sym_arr[cnt++] = sym; in sym_re_search()
755 if (sym_arr) in sym_re_search()
756 sym_arr[cnt] = NULL; in sym_re_search()
759 return sym_arr; in sym_re_search()