Lines Matching refs:res
414 int res = btn_dialog(main_window, in handle_f4() local
419 if (res == 0) in handle_f4()
421 else if (res == 1) in handle_f4()
650 int res; in do_exit() local
655 res = btn_dialog(main_window, in do_exit()
661 if (res == KEY_EXIT) { in do_exit()
667 switch (res) { in do_exit()
669 res = conf_write(filename); in do_exit()
670 if (res) in do_exit()
695 struct gstr res; in search_conf() local
727 res = get_relations_str(sym_arr, NULL); in search_conf()
730 "Search Results", str_get(&res)); in search_conf()
731 str_free(&res); in search_conf()
1073 int res; in conf() local
1100 res = wgetch(menu_win(curses_menu)); in conf()
1101 if (!res) in conf()
1103 if (do_match(res, &match_state, ¤t_index) == 0) { in conf()
1109 if (process_special_keys(&res, in conf()
1112 switch (res) { in conf()
1136 if (res == 10 || res == 27 || in conf()
1137 res == 32 || res == 'n' || res == 'y' || in conf()
1138 res == KEY_LEFT || res == KEY_RIGHT || in conf()
1139 res == 'm') in conf()
1146 if (res == 27 || (menu != &rootmenu && res == KEY_LEFT)) in conf()
1161 switch (res) { in conf()
1185 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()