Lines Matching refs:res
350 struct gstr res = str_new(); in get_relations_str() local
354 get_symbol_str(&res, sym); in get_relations_str()
356 str_append(&res, _("No matches found.\n")); in get_relations_str()
357 return res; in get_relations_str()
385 struct gstr res; in search_conf() local
410 res = get_relations_str(sym_arr); in search_conf()
412 show_textbox(_("Search Results"), str_get(&res), 0, 0); in search_conf()
413 str_free(&res); in search_conf()
592 int res; in conf() local
610 res = dialog_menu(prompt ? _(prompt) : _("Main Menu"), in conf()
613 if (res == 1 || res == KEY_ESC || res == -ERRDISPLAYTOOSMALL) in conf()
627 switch (res) { in conf()
727 int res; in conf_choice() local
743 res = dialog_checklist(prompt ? _(prompt) : _("Main Menu"), in conf_choice()
747 switch (res) { in conf_choice()
775 int res; in conf_string() local
792 res = dialog_inputbox(prompt ? _(prompt) : _("Main Menu"), in conf_string()
795 switch (res) { in conf_string()
814 int res; in conf_load() local
816 res = dialog_inputbox(NULL, load_config_text, in conf_load()
818 switch(res) { in conf_load()
841 int res; in conf_save() local
843 res = dialog_inputbox(NULL, save_config_text, in conf_save()
845 switch(res) { in conf_save()
868 int res; in main() local
895 res = dialog_yesno(NULL, in main()
901 res = -1; in main()
902 } while (res == KEY_ESC); in main()
905 switch (res) { in main()