| /openbmc/bmcweb/test/redfish-core/include/utils/ |
| H A D | query_param_test.cpp | 32 Query query{ in TEST() local 38 Query delegated = delegate(capabilities, query); in TEST() 40 EXPECT_FALSE(query.isOnly); in TEST() 45 Query query{ in TEST() local 53 Query delegated = delegate(capabilities, query); in TEST() 57 EXPECT_EQ(query.expandLevel, 5); in TEST() 62 Query query{ in TEST() local 68 Query delegated = delegate(capabilities, query); in TEST() 70 EXPECT_EQ(query.isOnly, true); in TEST() 75 Query query{ in TEST() local [all …]
|
| /openbmc/qemu/qapi/ |
| H A D | pragma.json | 31 'query-tpm-models', 32 'query-tpm-types', 82 'ACPISlotType', # query-acpi-ospm-status 86 'BlockDeviceInfo', # query-block 87 'BlockDeviceStats', # query-blockstats 88 'BlockDeviceTimedStats', # query-blockstats 90 'BlockInfo', # query-block 92 'BlockdevDriver', # blockdev-add, query-blockstats, ... 100 'NetdevTapOptions', # netdev_add, query-netdev, -netdev 103 'PciBusInfo', # query-pci [all …]
|
| H A D | tpm.json | 28 # @query-tpm-models: 39 { 'command': 'query-tpm-models', 'returns': ['TpmModel'], 57 # @query-tpm-types: 68 { 'command': 'query-tpm-types', 'returns': ['TpmType'], 163 # @query-tpm: 187 { 'command': 'query-tpm', 'returns': ['TPMInfo'],
|
| H A D | misc-i386.json | 29 # An enumeration of SEV state information used during `query-sev`. 127 # @query-sev: 144 { 'command': 'query-sev', 'returns': 'SevInfo' } 158 # @query-sev-launch-measure: 180 { 'command': 'query-sev-launch-measure', 'returns': 'SevLaunchMeasureInfo' } 209 # @query-sev-capabilities: 227 { 'command': 'query-sev-capabilities', 'returns': 'SevCapability' } 268 # @query-sev-attestation-report: 292 { 'command': 'query-sev-attestation-report', 336 # @query-sgx: [all …]
|
| H A D | machine.json | 105 # @query-cpus-fast: 140 { 'command': 'query-cpus-fast', 'returns': [ 'CpuInfoFast' ] } 194 # present when `query-machines` argument @compat-props is true. 213 # @query-machines: 249 { 'command': 'query-machines', 268 # @query-current-machine: 274 { 'command': 'query-current-machine', 'returns': 'CurrentMachineParams' } 289 # @query-target: 295 { 'command': 'query-target', 'returns': 'QemuTargetInfo' } 312 # @query-uuid: [all …]
|
| H A D | rocker.json | 27 # @query-rocker: 40 { 'command': 'query-rocker', 95 # @query-rocker-ports: 112 { 'command': 'query-rocker-ports', 232 # @query-rocker-of-dpa-flows: 258 { 'command': 'query-rocker-of-dpa-flows', 307 # @query-rocker-of-dpa-groups: 338 { 'command': 'query-rocker-of-dpa-groups',
|
| H A D | replay.json | 49 # @query-replay: 64 { 'command': 'query-replay', 75 # current instruction count can be observed with `query-replay`. 111 # with the `query-replay` command.
|
| H A D | accelerator.json | 28 # @query-kvm: 39 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
|
| H A D | stats.json | 92 # `query-stats`. 117 # The arguments to the `query-stats` command; specifies a target for 121 # @target: the kind of objects to query. Note that each possible 183 # @query-stats: 196 { 'command': 'query-stats', 257 # @query-stats-schemas: 261 # @provider: a provider to restrict the query to. 277 { 'command': 'query-stats-schemas',
|
| /openbmc/bmcweb/redfish-core/include/utils/ |
| H A D | query_param.hpp | 211 inline Query delegate(const QueryCapabilities& queryCapabilities, Query& query) in delegate() argument 215 if (query.isOnly && queryCapabilities.canDelegateOnly) in delegate() 218 query.isOnly = false; in delegate() 221 if (query.expandType != ExpandType::None) in delegate() 223 delegated.expandType = query.expandType; in delegate() 224 if (query.expandLevel <= queryCapabilities.canDelegateExpandLevel) in delegate() 226 query.expandType = ExpandType::None; in delegate() 227 delegated.expandLevel = query.expandLevel; in delegate() 228 query.expandLevel = 0; in delegate() 237 if (query.top && queryCapabilities.canDelegateTop) in delegate() [all …]
|
| /openbmc/qemu/chardev/ |
| H A D | wctablet.c | 73 uint8_t query[100]; member 98 memmove(tablet->query, tablet->query + count, tablet->query_index); in wctablet_shift_input() 99 tablet->query[tablet->query_index] = 0; in wctablet_shift_input() 218 for (i = 0; i < len && tablet->query_index < sizeof(tablet->query) - 1; i++) { in wctablet_chr_write() 219 tablet->query[tablet->query_index++] = buf[i]; in wctablet_chr_write() 221 tablet->query[tablet->query_index] = 0; in wctablet_chr_write() 223 while (tablet->query_index > 0 && (tablet->query[0] == '@' || in wctablet_chr_write() 224 tablet->query[0] == '\r' || in wctablet_chr_write() 225 tablet->query[0] == '\n')) { in wctablet_chr_write() 232 if (strncmp((char *)tablet->query, "~#", 2) == 0) { in wctablet_chr_write() [all …]
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | typeahead.jquery.js | 451 this.query = this.$input.val(); 452 this.queryWhenFocused = this.hasFocus() ? this.query : null; 468 this.queryWhenFocused = this.query; 518 areEquivalent = areQueriesEquivalent(val, this.query); 519 hasDifferentWhitespace = areEquivalent ? this.query.length !== val.length : false; 520 this.query = val; 522 this.trigger("queryChanged", this.query); 524 this.trigger("whitespaceChanged", this.query); 556 return this.query || ""; 563 return this.query !== this.queryWhenFocused; [all …]
|
| /openbmc/openbmc/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/ |
| H A D | 0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch | 4 Subject: [PATCH] ENGR00312515: get caps from src pad when query caps 22 @@ -1796,6 +1796,19 @@ gst_tag_demux_pad_query (GstPad * pad, GstObject * parent, GstQuery * query) 29 + /* We can hijack caps query if we typefind already */ 31 + gst_query_set_caps_result (query, demux->priv->src_caps); 34 + res = gst_pad_query_default (pad, parent, query); 40 res = gst_pad_query_default (pad, parent, query);
|
| /openbmc/openbmc/poky/meta/classes-recipe/ |
| H A D | gtk-immodules-cache.bbclass | 25 if [ ! -z `which gtk-query-immodules-2.0` ]; then 26 gtk-query-immodules-2.0 > ${libdir}/gtk-2.0/2.10.0/immodules.cache 28 if [ ! -z `which gtk-query-immodules-3.0` ]; then 30 gtk-query-immodules-3.0 > ${libdir}/gtk-3.0/3.0.0/immodules.cache 45 if [ ! -z `which gtk-query-immodules-2.0` ]; then 46 gtk-query-immodules-2.0 > ${libdir}/gtk-2.0/2.10.0/immodules.cache 48 if [ ! -z `which gtk-query-immodules-3.0` ]; then 49 gtk-query-immodules-3.0 > ${libdir}/gtk-3.0/3.0.0/immodules.cache
|
| /openbmc/openbmc/poky/scripts/postinst-intercepts/ |
| H A D | update_gtk_immodules_cache | 8 if [ -x $D${libexecdir}/${binprefix}gtk-query-immodules-2.0 ]; then 9 …PSEUDO_UNLOAD=1 ${binprefix}qemuwrapper -L $D $D${libexecdir}/${binprefix}gtk-query-immodules-2.0 \ 14 if [ -x $D${libexecdir}/${binprefix}gtk-query-immodules-3.0 ]; then 15 …PSEUDO_UNLOAD=1 ${binprefix}qemuwrapper -L $D $D${libexecdir}/${binprefix}gtk-query-immodules-3.0 \
|
| /openbmc/u-boot/board/cavium/thunderx/ |
| H A D | Kconfig | 20 bool "Enable ATF query commands" 23 Enable vendor specific ATF query commands such as SPI and SD/MMC 24 devices access, low level environment query, boot device layout
|
| /openbmc/qemu/docs/devel/ |
| H A D | s390-cpu-topology.rst | 21 Additions to query-cpus-fast 24 The command query-cpus-fast allows querying the topology tree and 29 { "execute": "query-cpus-fast" } 156 QAPI query command: query-s390x-cpu-polarization 159 The query command query-s390x-cpu-polarization returns the current 165 { "execute": "query-s390x-cpu-polarization" }
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/asio/asio/ |
| H A D | 0001-tests-Remove-blocking_adaptation.cpp.patch | 7 …ts/../../include/asio/execution/blocking_adaptation.hpp:216:13: error: call to 'query' is ambiguous 8 216 | conditional_t<true, T, P>::query(static_cast<P&&>(p)) 10 …tation.hpp:213:29: note: in instantiation of exception specification for 'query<asio::execution::d… 11 213 | static constexpr auto query(P&& p)
|
| /openbmc/phosphor-settingsd/ |
| H A D | README.txt | 1 How to use 'query' in the YAML file 2 'query' contains information for settings_manager.py to search for 5 query:
|
| /openbmc/qemu/docs/system/ |
| H A D | cpu-hotplug.rst | 28 (QEMU) query-hotpluggable-cpus 30 "execute": "query-hotpluggable-cpus", 58 (4) The ``query-hotpluggable-cpus`` command returns an object for CPUs 81 (5) Optionally, run QMP ``query-cpus-fast`` for some details about the 84 (QEMU) query-cpus-fast 87 "execute": "query-cpus-fast",
|
| H A D | managed-startup.rst | 17 This paused state is typically used by users to query machine state and/or 32 - ``query-qmp-schema`` 33 - ``query-commands`` 34 - ``query-status``
|
| /openbmc/qemu/hw/ufs/ |
| H A D | trace-events | 31 ufs_err_query_flag_not_readable(uint8_t idn) "query flag idn 0x%"PRIx8" is denied to read" 32 ufs_err_query_flag_not_writable(uint8_t idn) "query flag idn 0x%"PRIx8" is denied to write" 33 ufs_err_query_attr_not_readable(uint8_t idn) "query attribute idn 0x%"PRIx8" is denied to read" 34 ufs_err_query_attr_not_writable(uint8_t idn) "query attribute idn 0x%"PRIx8" is denied to write" 35 ufs_err_query_invalid_opcode(uint8_t opcode) "query request has invalid opcode. opcode: 0x%"PRIx8"" 36 ufs_err_query_invalid_idn(uint8_t opcode, uint8_t idn) "query request has invalid idn. opcode: 0x%"… 37 ufs_err_query_invalid_index(uint8_t opcode, uint8_t index) "query request has invalid index. opcode…
|
| /openbmc/qemu/tests/qapi-schema/ |
| H A D | returns-bad-type.json | 4 'human-monitor-command', 'query-tpm-models', 'guest-get-time' ] } } 10 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
|
| /openbmc/openbmc-tools/tof-voters/libvoters/subcmd/ |
| H A D | dump-gerrit.py | 39 query = list( 55 for change in query:
|
| /openbmc/openbmc/poky/meta/recipes-gnome/gdk-pixbuf/ |
| H A D | gdk-pixbuf_2.42.12.bb | 58 FILES:${PN} += "${libdir}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders" 86 # Copy gdk-pixbuf-query-loaders into libdir so it is always available 88 cp ${D}/${bindir}/gdk-pixbuf-query-loaders ${D}/${libdir}/gdk-pixbuf-2.0/ 108 create_wrapper ${D}/${libdir}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders \ 113 create_wrapper ${D}/${bindir}/gdk-pixbuf-query-loaders \
|