Symbol: choices
games/phantasia/io.c
317
getanswer(char *choices, bool def)
games/phantasia/io.c
371
if (def || strchr(choices, ch) != NULL)
games/phantasia/io.c
376
YELL: mvprintw(oldy + 1, 0, "Please choose one of : [%s]\n", choices);
games/phantasia/io.c
386
return (*choices);
lib/libc/crypt/cryptutil.c
59
const char *choices[] = { "blowfish", "bcrypt" };
lib/libc/crypt/cryptutil.c
60
size_t maxchoice = sizeof(choices) / sizeof(choices[0]);
lib/libc/crypt/cryptutil.c
68
const char *choice = choices[i];
lib/libc/rpc/xdr.c
566
struct xdr_discrim *choices, /* [value, xdr proc] for each arm */
lib/libc/rpc/xdr.c
583
for (; choices->proc != NULL; choices++) {
lib/libc/rpc/xdr.c
584
if (choices->value == dscm)
lib/libc/rpc/xdr.c
585
return ((*(choices->proc))(xdrs, unp));
sys/dev/pci/drm/radeon/radeon_vm.c
182
unsigned choices[2] = {};
sys/dev/pci/drm/radeon/radeon_vm.c
206
choices[fence->ring == ring ? 0 : 1] = i;
sys/dev/pci/drm/radeon/radeon_vm.c
211
if (choices[i]) {
sys/dev/pci/drm/radeon/radeon_vm.c
212
vm_id->id = choices[i];
sys/dev/pci/drm/radeon/radeon_vm.c
213
trace_radeon_vm_grab_id(choices[i], ring);
sys/dev/pci/drm/radeon/radeon_vm.c
214
return rdev->vm_manager.active[choices[i]];
sys/kern/kern_tc.c
850
char buf[32], *spc, *choices;
sys/kern/kern_tc.c
861
choices = malloc(maxlen, M_TEMP, M_WAITOK);
sys/kern/kern_tc.c
862
*choices = '\0';
sys/kern/kern_tc.c
867
strlcat(choices, buf, maxlen);
sys/kern/kern_tc.c
869
error = sysctl_rdstring(oldp, oldlenp, newp, choices);
sys/kern/kern_tc.c
870
free(choices, M_TEMP, maxlen);
usr.bin/tmux/options-table.c
1036
.choices = options_table_visual_bell_list,
usr.bin/tmux/options-table.c
1045
.choices = options_table_visual_bell_list,
usr.bin/tmux/options-table.c
1054
.choices = options_table_visual_bell_list,
usr.bin/tmux/options-table.c
1085
.choices = options_table_allow_passthrough_list,
usr.bin/tmux/options-table.c
1142
.choices = options_table_clock_mode_style_list,
usr.bin/tmux/options-table.c
1230
.choices = options_table_mode_keys_list,
usr.bin/tmux/options-table.c
1314
.choices = options_table_pane_border_indicators_list,
usr.bin/tmux/options-table.c
1323
.choices = options_table_pane_border_lines_list,
usr.bin/tmux/options-table.c
1332
.choices = options_table_pane_status_list,
usr.bin/tmux/options-table.c
1357
.choices = options_table_pane_scrollbars_list,
usr.bin/tmux/options-table.c
1374
.choices = options_table_pane_scrollbars_position_list,
usr.bin/tmux/options-table.c
1400
.choices = options_table_popup_border_lines_list,
usr.bin/tmux/options-table.c
1409
.choices = options_table_remain_on_exit_list,
usr.bin/tmux/options-table.c
1466
.choices = options_table_window_size_list,
usr.bin/tmux/options-table.c
337
.choices = options_table_cursor_style_list,
usr.bin/tmux/options-table.c
391
.choices = options_table_extended_keys_list,
usr.bin/tmux/options-table.c
400
.choices = options_table_extended_keys_format_list,
usr.bin/tmux/options-table.c
415
.choices = options_table_get_clipboard_list,
usr.bin/tmux/options-table.c
471
.choices = options_table_popup_border_lines_list,
usr.bin/tmux/options-table.c
509
.choices = options_table_set_clipboard_list,
usr.bin/tmux/options-table.c
560
.choices = options_table_bell_action_list,
usr.bin/tmux/options-table.c
588
.choices = options_table_bell_action_list,
usr.bin/tmux/options-table.c
619
.choices = options_table_destroy_unattached_list,
usr.bin/tmux/options-table.c
628
.choices = options_table_detach_on_destroy_list,
usr.bin/tmux/options-table.c
748
.choices = options_table_message_line_list,
usr.bin/tmux/options-table.c
824
.choices = options_table_bell_action_list,
usr.bin/tmux/options-table.c
832
.choices = options_table_status_list,
usr.bin/tmux/options-table.c
878
.choices = options_table_status_justify_list,
usr.bin/tmux/options-table.c
886
.choices = options_table_status_keys_list,
usr.bin/tmux/options-table.c
919
.choices = options_table_status_position_list,
usr.bin/tmux/options-table.c
990
.choices = options_table_cursor_style_list,
usr.bin/tmux/options-table.c
998
.choices = options_table_cursor_style_list,
usr.bin/tmux/options.c
1066
for (cp = oe->choices; *cp != NULL; cp++) {
usr.bin/tmux/options.c
158
s = xstrdup(o->tableentry->choices[ov->number]);
usr.bin/tmux/options.c
323
s = xstrdup(oe->choices[oe->default_num]);
usr.bin/tmux/window-customize.c
1112
if (oe->choices[choice + 1] == NULL)
usr.bin/tmux/window-customize.c
664
char choices[256] = "";
usr.bin/tmux/window-customize.c
749
for (choice = oe->choices; *choice != NULL; choice++) {
usr.bin/tmux/window-customize.c
750
strlcat(choices, *choice, sizeof choices);
usr.bin/tmux/window-customize.c
751
strlcat(choices, ", ", sizeof choices);
usr.bin/tmux/window-customize.c
753
choices[strlen(choices) - 2] = '\0';
usr.bin/tmux/window-customize.c
756
choices))