Lines Matching refs:res
394 struct gstr res; in search_conf() local
444 res = get_relations_str(sym_arr, &head); in search_conf()
447 str_get(&res), 0, 0, keys, &vscroll, in search_conf()
456 str_free(&res); in search_conf()
650 int res; in conf() local
667 res = dialog_menu(prompt ? prompt : "Main Menu", in conf()
670 if (res == 1 || res == KEY_ESC || res == -ERRDISPLAYTOOSMALL) in conf()
685 switch (res) { in conf()
804 int res; in conf_choice() local
825 res = dialog_checklist(prompt ? prompt : "Main Menu", in conf_choice()
831 switch (res) { in conf_choice()
862 int res; in conf_string() local
879 res = dialog_inputbox(prompt ? prompt : "Main Menu", in conf_string()
882 switch (res) { in conf_string()
901 int res; in conf_load() local
903 res = dialog_inputbox(NULL, load_config_text, in conf_load()
905 switch(res) { in conf_load()
928 int res; in conf_save() local
930 res = dialog_inputbox(NULL, save_config_text, in conf_save()
932 switch(res) { in conf_save()
953 int res; in handle_exit() local
959 res = dialog_yesno(NULL, in handle_exit()
964 res = -1; in handle_exit()
968 switch (res) { in handle_exit()
985 res = 0; in handle_exit()
992 if (res != KEY_ESC) in handle_exit()
993 res = 0; in handle_exit()
996 return res; in handle_exit()
1007 int res; in main() local
1036 res = handle_exit(); in main()
1037 } while (res == KEY_ESC); in main()
1039 return res; in main()