/xen/xen/common/ |
A D | smp.c | 32 cpumask_t selected; member 48 const cpumask_t *selected, in on_selected_cpus() argument 56 ASSERT(cpumask_subset(selected, &cpu_online_map)); in on_selected_cpus() 60 cpumask_copy(&call_data.selected, selected); in on_selected_cpus() 62 nr_cpus = cpumask_weight(&call_data.selected); in on_selected_cpus() 70 smp_send_call_function_mask(&call_data.selected); in on_selected_cpus() 72 while ( !cpumask_empty(&call_data.selected) ) in on_selected_cpus() 85 if ( !cpumask_test_cpu(cpu, &call_data.selected) ) in smp_call_function_interrupt() 94 cpumask_clear_cpu(cpu, &call_data.selected); in smp_call_function_interrupt() 99 cpumask_clear_cpu(cpu, &call_data.selected); in smp_call_function_interrupt()
|
/xen/xen/tools/kconfig/lxdialog/ |
A D | menubox.c | 54 int selected, int hotkey) in do_print_item() argument 78 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item() 82 if (selected) { in do_print_item() 89 #define print_item(index, choice, selected) \ argument 147 print_button(win, "Select", y, x, selected == 0); in print_buttons() 148 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons() 149 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons() 150 print_button(win, " Save ", y, x + 36, selected == 3); in print_buttons() 153 wmove(win, y, x + 1 + 12 * selected); in print_buttons() 172 const void *selected, int *s_scroll) in dialog_menu() argument [all …]
|
A D | checklist.c | 18 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument 33 wattrset(win, selected ? dlg.check_selected.atr in print_item() 38 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item() 40 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in print_item() 42 if (selected) { in print_item() 88 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 93 print_button(dialog, "Select", y, x, selected == 0); in print_buttons() 94 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons() 96 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
|
A D | yesno.c | 14 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 19 print_button(dialog, " Yes ", y, x, selected == 0); in print_buttons() 20 print_button(dialog, " No ", y, x + 13, selected == 1); in print_buttons() 22 wmove(dialog, y, x + 1 + 13 * selected); in print_buttons()
|
A D | dialog.h | 157 int selected; /* Set to 1 by dialog_*() function if selected. */ member 205 void print_button(WINDOW * win, const char *label, int y, int x, int selected); 223 const void *selected, int *s_scroll);
|
A D | inputbox.c | 16 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons() argument 21 print_button(dialog, " Ok ", y, x, selected == 0); in print_buttons() 22 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons() 24 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
|
A D | util.c | 434 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button() argument 439 wattrset(win, selected ? dlg.button_active.atr in print_button() 444 wattrset(win, selected ? dlg.button_label_active.atr in print_button() 448 wattrset(win, selected ? dlg.button_key_active.atr in print_button() 451 wattrset(win, selected ? dlg.button_label_active.atr in print_button() 454 wattrset(win, selected ? dlg.button_active.atr in print_button() 635 item_cur->node.selected = val; in item_set_selected() 694 return (item_cur->node.selected != 0); in item_is_selected()
|
/xen/scripts/ |
A D | get_maintainer.pl | 1481 my %selected; 1488 $selected{$count} = 1; 1513 $sel = "*" if ($selected{$count}); 1597 $selected{$nr - 1} = !$selected{$nr - 1}; 1602 $selected{$i} = $toggle; 1606 $selected{$i} = !$selected{$i}; 1611 $selected{$i} = !$selected{$i} 1616 $selected{$i} = !$selected{$i} 1621 $selected{$i} = !$selected{$i} 1626 $selected{$i} = !$selected{$i} [all …]
|
/xen/xen/tools/kconfig/tests/err_recursive_dep/ |
A D | expected_stderr | 2 Kconfig:11: symbol B is selected by B 18 Kconfig:32: symbol D2 is selected by D1
|
/xen/docs/misc/arm/ |
A D | early-printk.txt | 13 set other options, which depends on the driver selected. 18 Other options depends on the driver selected:
|
/xen/xen/include/xen/ |
A D | smp.h | 39 const cpumask_t *selected,
|
/xen/stubdom/grub.patches/ |
A D | 11graphics-keyboard.diff | 12 /* Key was pressed, show which entry is selected before GETKEY,
|
A D | 10graphics.diff | 736 " the terminal to which you input a key first will be selected. If no" 2020 - Press enter to boot the selected OS or \'p\' to enter a\n\ 2022 + Press enter to boot the selected OS or \'p\' to enter a\n\ 2029 - Press enter to boot the selected OS, \'e\' to edit the\n\ 2031 + Press enter to boot the selected OS, \'e\' to edit the\n\ 2035 - Press \'b\' to boot, \'e\' to edit the selected command in the\n\ 2038 - selected line, or escape to go back to the main menu."); 2039 + Press \'b\' to boot, \'e\' to edit the selected command in the\n\ 2041 + after (\'O\' for before) the selected line, \'d\' to remove the\n\ 2042 + selected line, or escape to go back to the main menu."); [all …]
|
/xen/xen/tools/kconfig/ |
A D | mconf.c | 804 int selected; in conf_choice() local 829 selected = item_activate_selected(); in conf_choice() 832 if (selected) { in conf_choice() 841 if (selected) { in conf_choice()
|
/xen/docs/hypervisor-guide/x86/ |
A D | how-xen-boots.rst | 29 EFI extensions. When ``CONFIG_PVH_GUEST`` is selected at build time, this 54 If ``CONFIG_PVH_GUEST`` was selected at build time, an Elf note is included
|
/xen/tools/xenstat/xentop/ |
A D | TODO | 12 field, if not selected for display letter is lowercase, no leading asterisk
|
/xen/docs/misc/ |
A D | kconfig-language.rst | 138 minimal value <symbol> can be set to. If <symbol> is selected multiple 188 contained there can still be selected by other symbols, though). It is 405 selected, a tristate choice also allows any number of config entries 411 choice to 'n' and no entry needs to be selected. 478 that is defined in a common Kconfig file and selected by the relevant
|
/xen/docs/features/ |
A D | dom0less.pandoc | 115 However, the NULL scheduler can be selected by passing `sched=null` to
|
/xen/docs/misc/xen-makefiles/ |
A D | makefiles.rst | 33 The following pattern is often used to have object selected
|
/xen/docs/man/ |
A D | xen-tscmode.7.pod | 243 version 2.6.30(?), to select TSC as a system clocksource. Once selected, 252 to disable migration. If no_migrate is selected and the VM is running
|
A D | xl.cfg.5.pod.in | 469 version of pvgrub can be selected. 658 but places less load on the hypervisor and so should generally be selected 1021 For HVM domains B<devicemodel> will be selected. 1771 memory. The defaults are selected to give the best results for the 2693 memory. The defaults are selected to give the best results for the 2795 be automatically selected based upon the other features and options 2796 you have selected.
|
A D | xl-numa-placement.7.pod | 255 selected node(s) and the NUMA aware scheduling (if the credit scheduler
|
/xen/tools/firmware/vgabios/ |
A D | vbe_display_api.txt | 174 This parameter can be used to read/write the current selected BANK (at 0xA0000).
|
/xen/ |
A D | INSTALL | 49 Individual subsystems can be selected by one of the following options.
|
A D | SUPPORT.md | 771 normally selected by default only in a stub dm configuration, but it
|