Lines Matching refs:res
393 struct gstr res; in search_conf() local
443 res = get_relations_str(sym_arr, &head); in search_conf()
446 str_get(&res), 0, 0, keys, &vscroll, in search_conf()
455 str_free(&res); in search_conf()
649 int res; in conf() local
666 res = dialog_menu(prompt ? prompt : "Main Menu", in conf()
669 if (res == 1 || res == KEY_ESC || res == -ERRDISPLAYTOOSMALL) in conf()
684 switch (res) { in conf()
803 int res; in conf_choice() local
824 res = dialog_checklist(prompt ? prompt : "Main Menu", in conf_choice()
830 switch (res) { in conf_choice()
861 int res; in conf_string() local
878 res = dialog_inputbox(prompt ? prompt : "Main Menu", in conf_string()
881 switch (res) { in conf_string()
900 int res; in conf_load() local
902 res = dialog_inputbox(NULL, load_config_text, in conf_load()
904 switch(res) { in conf_load()
927 int res; in conf_save() local
929 res = dialog_inputbox(NULL, save_config_text, in conf_save()
931 switch(res) { in conf_save()
952 int res; in handle_exit() local
958 res = dialog_yesno(NULL, in handle_exit()
963 res = -1; in handle_exit()
967 switch (res) { in handle_exit()
984 res = 0; in handle_exit()
991 if (res != KEY_ESC) in handle_exit()
992 res = 0; in handle_exit()
995 return res; in handle_exit()
1006 int res; in main() local
1035 res = handle_exit(); in main()
1036 } while (res == KEY_ESC); in main()
1038 return res; in main()