Lines Matching refs:res
417 int res = btn_dialog(main_window, in handle_f4() local
422 if (res == 0) in handle_f4()
424 else if (res == 1) in handle_f4()
653 int res; in do_exit() local
658 res = btn_dialog(main_window, in do_exit()
664 if (res == KEY_EXIT) { in do_exit()
670 switch (res) { in do_exit()
672 res = conf_write(filename); in do_exit()
673 if (res) in do_exit()
697 struct gstr res; in search_conf() local
724 res = get_relations_str(sym_arr); in search_conf()
727 _("Search Results"), str_get(&res)); in search_conf()
728 str_free(&res); in search_conf()
1071 int res; in conf() local
1098 res = wgetch(menu_win(curses_menu)); in conf()
1099 if (!res) in conf()
1101 if (do_match(res, &match_state, ¤t_index) == 0) { in conf()
1107 if (process_special_keys(&res, in conf()
1110 switch (res) { in conf()
1134 if (res == 10 || res == 27 || in conf()
1135 res == 32 || res == 'n' || res == 'y' || in conf()
1136 res == KEY_LEFT || res == KEY_RIGHT || in conf()
1137 res == 'm') in conf()
1144 if (res == 27 || (menu != &rootmenu && res == KEY_LEFT)) in conf()
1163 switch (res) { in conf()
1187 else if (res == 10) in conf()
1250 int res, i = 0; in conf_choice() local
1293 res = wgetch(menu_win(curses_menu)); in conf_choice()
1294 if (!res) in conf_choice()
1296 if (do_match(res, &match_state, &selected_index) == 0) { in conf_choice()
1303 &res, in conf_choice()
1306 switch (res) { in conf_choice()
1330 if (res == 10 || res == 27 || res == ' ' || in conf_choice()
1331 res == KEY_LEFT){ in conf_choice()
1337 if (res == 27 || res == KEY_LEFT) in conf_choice()
1343 switch (res) { in conf_choice()
1366 int res; in conf_string() local
1382 res = dialog_inputbox(main_window, in conf_string()
1388 switch (res) { in conf_string()
1409 int res; in conf_load() local
1410 res = dialog_inputbox(main_window, in conf_load()
1415 switch (res) { in conf_load()
1441 int res; in conf_save() local
1442 res = dialog_inputbox(main_window, in conf_save()
1447 switch (res) { in conf_save()
1451 res = conf_write(dialog_input_result); in conf_save()
1452 if (!res) { in conf_save()