/openbmc/qemu/ui/ |
H A D | clipboard.c | 26 QemuClipboardSelection selection) in qemu_clipboard_peer_owns() argument 28 QemuClipboardInfo *info = qemu_clipboard_info(selection); in qemu_clipboard_peer_owns() 34 QemuClipboardSelection selection) in qemu_clipboard_peer_release() argument 38 if (qemu_clipboard_peer_owns(peer, selection)) { in qemu_clipboard_peer_release() 40 info = qemu_clipboard_info_new(NULL, selection); in qemu_clipboard_peer_release() 50 !cbinfo[info->selection] || in qemu_clipboard_check_serial() 51 !cbinfo[info->selection]->has_serial) { in qemu_clipboard_check_serial() 57 ok = info->serial >= cbinfo[info->selection]->serial; in qemu_clipboard_check_serial() 59 ok = info->serial > cbinfo[info->selection]->serial; in qemu_clipboard_check_serial() 62 trace_clipboard_check_serial(cbinfo[info->selection]->serial, info->serial, ok); in qemu_clipboard_check_serial() [all …]
|
H A D | vdagent.c | 344 *s = info->selection; in vdagent_send_clipboard_grab() 347 } else if (info->selection != QEMU_CLIPBOARD_SELECTION_CLIPBOARD) { in vdagent_send_clipboard_grab() 355 info->serial = vd->last_serial[info->selection]++; in vdagent_send_clipboard_grab() 385 *s = info->selection; in vdagent_send_clipboard_release() 387 } else if (info->selection != QEMU_CLIPBOARD_SELECTION_CLIPBOARD) { in vdagent_send_clipboard_release() 407 *s = info->selection; in vdagent_send_clipboard_data() 410 } else if (info->selection != QEMU_CLIPBOARD_SELECTION_CLIPBOARD) { in vdagent_send_clipboard_data() 426 QemuClipboardSelection selection, in vdagent_send_empty_clipboard_data() argument 429 g_autoptr(QemuClipboardInfo) info = qemu_clipboard_info_new(&vd->cbpeer, selection); in vdagent_send_empty_clipboard_data() 438 QemuClipboardSelection s = info->selection; in vdagent_clipboard_update_info() [all …]
|
H A D | dbus-clipboard.c | 69 info->selection, in dbus_clipboard_update_info() 79 req = &dpy->clipboard_request[info->selection]; in dbus_clipboard_update_info() 96 info->selection, in dbus_clipboard_update_info() 154 info->selection, in dbus_clipboard_qemu_request()
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | selections-common.rst | 5 Common selection definitions 8 While the :ref:`V4L2 selection API <selection-api>` and 9 :ref:`V4L2 subdev selection APIs <v4l2-subdev-selections>` are very 11 sub-device API, the selection rectangle refers to the media bus format, 12 and is bound to a sub-device's pad. On the V4L2 interface the selection 15 This section defines the common definitions of the selection interfaces 22 v4l2-selection-targets 23 v4l2-selection-flags
|
H A D | selection-api.rst | 12 selection-api-intro.rst 13 selection-api-targets.rst 14 selection-api-configuration.rst 15 selection-api-vs-crop-api.rst 16 selection-api-examples.rst
|
H A D | vidioc-subdev-g-selection.rst | 13 VIDIOC_SUBDEV_G_SELECTION - VIDIOC_SUBDEV_S_SELECTION - Get or set selection rectangles on a subdev… 42 The selection API replaces 46 See :ref:`subdev` for more information on how each selection target 54 Types of selection targets 57 There are two types of selection targets: actual and bounds. The actual 82 - Active or try selection, from enum 89 - Target selection rectangle. See :ref:`v4l2-selections-common`. 92 - Flags. See :ref:`v4l2-selection-flags`. 112 The selection rectangle can't be changed because the pad is 121 references a non-existing format, or the selection target is not
|
H A D | selection-api-targets.rst | 10 .. kernel-figure:: selection.svg 11 :alt: selection.svg 20 See :ref:`v4l2-selection-targets` for more information.
|
H A D | selection-api-vs-crop-api.rst | 9 The selection API was introduced to cope with deficiencies of the 15 selection API makes a clear distinction between composing and cropping 29 The selection API deals with configuration of buffer 31 the selection API the concepts of the padded target and constraints 38 Driver developers are encouraged to implement only selection API. The
|
H A D | vidioc-g-selection.rst | 13 VIDIOC_G_SELECTION - VIDIOC_S_SELECTION - Get or set one of the selection rectangles 38 The ioctls are used to query and configure selection rectangles. 45 to table :ref:`v4l2-selections-common` or :ref:`selection-api` for 63 :ref:`v4l2-selections-common` or :ref:`selection-api` for additional 149 - Flags controlling the selection rectangle adjustments, refer to 150 :ref:`selection flags <v4l2-selection-flags>`. 153 - The selection rectangle. 177 Given buffer type ``type`` or the selection target ``target`` is not 189 It is not possible to apply change of the selection rectangle at the
|
H A D | v4l2-selection-targets.rst | 3 .. _v4l2-selection-targets: 9 The precise meaning of the selection targets may be dependent on which 13 .. _v4l2-selection-targets-table:
|
H A D | v4l2-selection-flags.rst | 3 .. _v4l2-selection-flags: 9 .. _v4l2-selection-flags-table:
|
/openbmc/qemu/include/ui/ |
H A D | clipboard.h | 115 QemuClipboardSelection selection; member 155 QemuClipboardSelection selection); 166 QemuClipboardSelection selection); 175 QemuClipboardInfo *qemu_clipboard_info(QemuClipboardSelection selection); 201 QemuClipboardSelection selection);
|
/openbmc/linux/drivers/media/platform/renesas/vsp1/ |
H A D | vsp1_entity.c | 367 struct v4l2_rect *selection; in vsp1_subdev_set_pad_format() local 411 selection = vsp1_entity_get_pad_selection(entity, config, fmt->pad, in vsp1_subdev_set_pad_format() 413 selection->left = 0; in vsp1_subdev_set_pad_format() 414 selection->top = 0; in vsp1_subdev_set_pad_format() 415 selection->width = format->width; in vsp1_subdev_set_pad_format() 416 selection->height = format->height; in vsp1_subdev_set_pad_format() 418 selection = vsp1_entity_get_pad_selection(entity, config, fmt->pad, in vsp1_subdev_set_pad_format() 420 selection->left = 0; in vsp1_subdev_set_pad_format() 421 selection->top = 0; in vsp1_subdev_set_pad_format() 422 selection->width = format->width; in vsp1_subdev_set_pad_format() [all …]
|
H A D | vsp1_uif.c | 138 struct v4l2_rect *selection; in uif_set_selection() local 165 selection = vsp1_entity_get_pad_selection(&uif->entity, config, in uif_set_selection() 167 *selection = sel->r; in uif_set_selection()
|
/openbmc/linux/Documentation/devicetree/bindings/sound/ |
H A D | nokia,rx51.txt | 9 - tvout-selection-gpios: GPIO for tvout selection 23 tvout-selection-gpios = <&gpio2 8 GPIO_ACTIVE_HIGH>; /* 40 */
|
/openbmc/linux/Documentation/userspace-api/media/drivers/ |
H A D | ccs.rst | 29 that purpose, selection target ``V4L2_SEL_TGT_COMPOSE`` is supported on the 33 source pad (1) expses another digital crop selection rectangle that can only 40 the sensor. The V4L2 selection target ``V4L2_SEL_TGT_CROP`` is used to 42 Scaling is configured using selection target ``V4L2_SEL_TGT_COMPOSE`` on the 46 another digital crop selection rectangle that can only crop at the end of the 56 configured selection rectangle that designates crop. The difference has an
|
/openbmc/linux/Documentation/driver-api/media/drivers/ccs/ |
H A D | ccs.rst | 29 that purpose, selection target ``V4L2_SEL_TGT_COMPOSE`` is supported on the 33 source pad (1) expses another digital crop selection rectangle that can only 40 the sensor. The V4L2 selection target ``V4L2_SEL_TGT_CROP`` is used to 42 Scaling is configured using selection target ``V4L2_SEL_TGT_COMPOSE`` on the 46 another digital crop selection rectangle that can only crop at the end of the 56 configured selection rectangle that designates crop. The difference has an
|
/openbmc/linux/tools/perf/ui/browsers/ |
H A D | hists.c | 399 struct map_symbol *ms = browser->selection; in hist_browser__selection_has_children() 413 struct map_symbol *ms = browser->selection; in hist_browser__selection_unfolded() 427 struct map_symbol *ms = browser->selection; in hist_browser__selection_sym_name() 445 struct map_symbol *ms = browser->selection; in hist_browser__toggle_fold() 801 browser->selection = &chain->ms; in hist_browser__show_callchain_entry() 1310 browser->selection = &entry->ms; in hist_browser__show_entry() 1423 browser->selection = &entry->ms; in hist_browser__show_hierarchy_entry() 1581 browser->selection = NULL; in hist_browser__show_no_entry() 1825 hb->selection = NULL; in hist_browser__refresh() 3036 map = browser->selection->map; in evsel__hists_browse() [all …]
|
H A D | annotate.c | 28 struct annotation_line *selection; member 119 ab->selection = al; in annotate_browser__write() 153 struct disasm_line *cursor = disasm_line(ab->selection); in annotate_browser__draw_current_jump() 418 struct disasm_line *cursor = disasm_line(ab->selection); in annotate_browser__show_full_location() 461 struct disasm_line *dl = disasm_line(browser->selection); in annotate_browser__callq() 512 struct disasm_line *dl = disasm_line(browser->selection); in annotate_browser__jump() 541 struct annotation_line *al = browser->selection; in annotate_browser__find_string() 578 struct annotation_line *al = browser->selection; in annotate_browser__find_string_reverse() 866 struct disasm_line *dl = disasm_line(browser->selection); in annotate_browser__run() 868 if (browser->selection == NULL) in annotate_browser__run() [all …]
|
/openbmc/u-boot/board/samsung/common/ |
H A D | misc.c | 331 char *selection[BOOT_MODE_EXIT + 1]; in display_download_menu() local 335 selection[i] = "[ ]"; in display_download_menu() 337 selection[mode] = "[=>]"; in display_download_menu() 343 lcd_printf("\t%s %s - %s\n\n", selection[i], in display_download_menu()
|
/openbmc/linux/Documentation/userspace-api/media/dvb/ |
H A D | fe-diseqc-send-burst.rst | 13 FE_DISEQC_SEND_BURST - Sends a 22KHz tone burst for 2x1 mini DiSEqC satellite selection. 35 DiSEqC satellite selection for 2x1 switches. This call requires
|
/openbmc/u-boot/lib/ |
H A D | tpm-v2.c | 1083 static bool tpm2_is_active_pcr(struct tpms_pcr_selection *selection) in tpm2_is_active_pcr() argument 1091 for (i = 0; i < selection->size_of_select; i++) { in tpm2_is_active_pcr() 1092 if (selection->pcr_select[i]) in tpm2_is_active_pcr() 1142 u32 hash_offset = offsetof(struct tpml_pcr_selection, selection) + in tpm2_get_pcr_info() 1152 pcrs.selection[i].hash = in tpm2_get_pcr_info() 1154 pcrs.selection[i].size_of_select = in tpm2_get_pcr_info() 1156 if (pcrs.selection[i].size_of_select > TPM2_PCR_SELECT_MAX) { in tpm2_get_pcr_info() 1158 pcrs.selection[i].size_of_select); in tpm2_get_pcr_info() 1162 memcpy(pcrs.selection[i].pcr_select, response + pcr_select_offset, in tpm2_get_pcr_info() 1163 pcrs.selection[i].size_of_select); in tpm2_get_pcr_info() [all …]
|
/openbmc/u-boot/board/kobol/helios4/ |
H A D | README | 20 Boot selection: 23 Before powering up the board, boot selection should be done via the SW1 dip
|
/openbmc/linux/Documentation/scheduler/ |
H A D | sched-capacity.rst | 352 5.1.2 Wakeup CPU selection 355 CFS task wakeup CPU selection follows the capacity fitness criterion described 357 which lets userspace have more leverage over the CPU selection of CFS 358 tasks. IOW, CFS wakeup CPU selection searches for a CPU that satisfies:: 369 Wakeup CPU selection in CFS can be eclipsed by Energy Aware Scheduling 375 A pathological case in the wakeup CPU selection occurs when a task rarely 406 wakeup event to fix this up via wakeup CPU selection. 418 5.2.1 Wakeup CPU selection 421 RT task wakeup CPU selection searches for a CPU that satisfies:: 432 5.3.1 Wakeup CPU selection [all …]
|
/openbmc/u-boot/board/Arcturus/ucp1020/ |
H A D | README | 11 - the selection of populated phy(s): 14 - the selection of boot location:
|