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()
651 int res; in conf() local
668 res = dialog_menu(prompt ? _(prompt) : _("Main Menu"), in conf()
671 if (res == 1 || res == KEY_ESC || res == -ERRDISPLAYTOOSMALL) in conf()
686 switch (res) { in conf()
808 int res; in conf_choice() local
829 res = dialog_checklist(prompt ? _(prompt) : _("Main Menu"), in conf_choice()
835 switch (res) { in conf_choice()
866 int res; in conf_string() local
883 res = dialog_inputbox(prompt ? _(prompt) : _("Main Menu"), in conf_string()
886 switch (res) { in conf_string()
905 int res; in conf_load() local
907 res = dialog_inputbox(NULL, load_config_text, in conf_load()
909 switch(res) { in conf_load()
932 int res; in conf_save() local
934 res = dialog_inputbox(NULL, save_config_text, in conf_save()
936 switch(res) { in conf_save()
957 int res; in handle_exit() local
963 res = dialog_yesno(NULL, in handle_exit()
968 res = -1; in handle_exit()
972 switch (res) { in handle_exit()
988 res = 0; in handle_exit()
995 if (res != KEY_ESC) in handle_exit()
996 res = 0; in handle_exit()
999 return res; in handle_exit()
1010 int res; in main() local
1043 res = handle_exit(); in main()
1044 } while (res == KEY_ESC); in main()
1046 return res; in main()