Lines Matching refs:res
418 int res = btn_dialog(main_window, in handle_f4() local
423 if (res == 0) in handle_f4()
425 else if (res == 1) in handle_f4()
654 int res; in do_exit() local
659 res = btn_dialog(main_window, in do_exit()
665 if (res == KEY_EXIT) { in do_exit()
671 switch (res) { in do_exit()
673 res = conf_write(filename); in do_exit()
674 if (res) in do_exit()
698 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()
1070 int res; in conf() local
1097 res = wgetch(menu_win(curses_menu)); in conf()
1098 if (!res) in conf()
1100 if (do_match(res, &match_state, ¤t_index) == 0) { in conf()
1106 if (process_special_keys(&res, in conf()
1109 switch (res) { in conf()
1133 if (res == 10 || res == 27 || in conf()
1134 res == 32 || res == 'n' || res == 'y' || in conf()
1135 res == KEY_LEFT || res == KEY_RIGHT || in conf()
1136 res == 'm') in conf()
1143 if (res == 27 || (menu != &rootmenu && res == KEY_LEFT)) in conf()
1158 switch (res) { in conf()
1182 else if (res == 10) in conf()
1238 int res, i = 0; in conf_choice() local
1281 res = wgetch(menu_win(curses_menu)); in conf_choice()
1282 if (!res) in conf_choice()
1284 if (do_match(res, &match_state, &selected_index) == 0) { in conf_choice()
1291 &res, in conf_choice()
1294 switch (res) { in conf_choice()
1318 if (res == 10 || res == 27 || res == ' ' || in conf_choice()
1319 res == KEY_LEFT){ in conf_choice()
1325 if (res == 27 || res == KEY_LEFT) in conf_choice()
1331 switch (res) { in conf_choice()
1353 int res; in conf_string() local
1369 res = dialog_inputbox(main_window, in conf_string()
1375 switch (res) { in conf_string()
1395 int res; in conf_load() local
1396 res = dialog_inputbox(main_window, in conf_load()
1401 switch (res) { in conf_load()
1426 int res; in conf_save() local
1427 res = dialog_inputbox(main_window, in conf_save()
1432 switch (res) { in conf_save()
1436 res = conf_write(dialog_input_result); in conf_save()
1437 if (!res) { in conf_save()