Lines Matching refs:res
386 struct gstr res; in search_conf() local
433 res = get_relations_str(sym_arr, &head); in search_conf()
435 dres = show_textbox_ext("Search Results", str_get(&res), 0, 0, in search_conf()
444 str_free(&res); in search_conf()
606 int res; in conf_choice() local
627 res = dialog_checklist(prompt ? prompt : "Main Menu", in conf_choice()
633 switch (res) { in conf_choice()
664 int res; in conf_string() local
681 res = dialog_inputbox(prompt ? prompt : "Main Menu", in conf_string()
684 switch (res) { in conf_string()
703 int res; in conf_load() local
705 res = dialog_inputbox(NULL, load_config_text, in conf_load()
707 switch(res) { in conf_load()
730 int res; in conf_save() local
732 res = dialog_inputbox(NULL, save_config_text, in conf_save()
734 switch(res) { in conf_save()
759 int res; in conf() local
776 res = dialog_menu(prompt ? prompt : "Main Menu", in conf()
779 if (res == 1 || res == KEY_ESC || res == -ERRDISPLAYTOOSMALL) in conf()
794 switch (res) { in conf()
876 int res; in handle_exit() local
882 res = dialog_yesno(NULL, in handle_exit()
887 res = -1; in handle_exit()
891 switch (res) { in handle_exit()
908 res = 0; in handle_exit()
915 if (res != KEY_ESC) in handle_exit()
916 res = 0; in handle_exit()
919 return res; in handle_exit()
930 int res; in main() local
959 res = handle_exit(); in main()
960 } while (res == KEY_ESC); in main()
962 return res; in main()