Lines Matching refs:res

422 	int res = btn_dialog(main_window,  in handle_f4()  local
427 if (res == 0) in handle_f4()
429 else if (res == 1) in handle_f4()
657 int res; in do_exit() local
662 res = btn_dialog(main_window, in do_exit()
668 if (res == KEY_EXIT) { in do_exit()
674 switch (res) { in do_exit()
676 res = conf_write(filename); in do_exit()
677 if (res) in do_exit()
702 struct gstr res; in search_conf() local
743 res = get_relations_str(sym_arr, &head); in search_conf()
745 "Search Results", str_get(&res), in search_conf()
754 str_free(&res); in search_conf()
1060 int i, res; in selected_conf() local
1099 res = wgetch(menu_win(curses_menu)); in selected_conf()
1100 if (!res) in selected_conf()
1102 if (do_match(res, &match_state, &current_index) == 0) { in selected_conf()
1108 if (process_special_keys(&res, in selected_conf()
1111 switch (res) { in selected_conf()
1137 if (res == 10 || res == 27 || in selected_conf()
1138 res == 32 || res == 'n' || res == 'y' || in selected_conf()
1139 res == KEY_LEFT || res == KEY_RIGHT || in selected_conf()
1140 res == 'm') in selected_conf()
1147 if (res == 27 || (menu != &rootmenu && res == KEY_LEFT)) in selected_conf()
1162 switch (res) { in selected_conf()
1185 else if (res == 10) in selected_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()
1320 if (res == 10 || res == 27 || res == ' ' || in conf_choice()
1321 res == KEY_LEFT){ in conf_choice()
1327 if (res == 27 || res == KEY_LEFT) in conf_choice()
1333 switch (res) { in conf_choice()
1355 int res; in conf_string() local
1371 res = dialog_inputbox(main_window, in conf_string()
1377 switch (res) { in conf_string()
1397 int res; in conf_load() local
1398 res = dialog_inputbox(main_window, in conf_load()
1403 switch (res) { in conf_load()
1428 int res; in conf_save() local
1429 res = dialog_inputbox(main_window, in conf_save()
1434 switch (res) { in conf_save()
1438 res = conf_write(dialog_input_result); in conf_save()
1439 if (!res) { in conf_save()