Lines Matching refs:res

412 	int res = btn_dialog(main_window,  in handle_f4()  local
417 if (res == 0) in handle_f4()
419 else if (res == 1) in handle_f4()
648 int res; in do_exit() local
653 res = btn_dialog(main_window, in do_exit()
659 if (res == KEY_EXIT) { in do_exit()
665 switch (res) { in do_exit()
667 res = conf_write(filename); in do_exit()
668 if (res) in do_exit()
692 struct gstr res; in search_conf() local
724 res = get_relations_str(sym_arr, NULL); 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, &current_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()
1159 switch (res) { in conf()
1183 else if (res == 10) in conf()
1239 int res, i = 0; in conf_choice() local
1282 res = wgetch(menu_win(curses_menu)); in conf_choice()
1283 if (!res) in conf_choice()
1285 if (do_match(res, &match_state, &selected_index) == 0) { in conf_choice()
1292 &res, in conf_choice()
1295 switch (res) { in conf_choice()
1319 if (res == 10 || res == 27 || res == ' ' || in conf_choice()
1320 res == KEY_LEFT){ in conf_choice()
1326 if (res == 27 || res == KEY_LEFT) in conf_choice()
1332 switch (res) { in conf_choice()
1354 int res; in conf_string() local
1370 res = dialog_inputbox(main_window, in conf_string()
1376 switch (res) { in conf_string()
1396 int res; in conf_load() local
1397 res = dialog_inputbox(main_window, in conf_load()
1402 switch (res) { in conf_load()
1427 int res; in conf_save() local
1428 res = dialog_inputbox(main_window, in conf_save()
1433 switch (res) { in conf_save()
1437 res = conf_write(dialog_input_result); in conf_save()
1438 if (!res) { in conf_save()