Home
last modified time | relevance | path

Searched refs:query (Results 1 – 25 of 243) sorted by relevance

12345678910

/openbmc/bmcweb/test/redfish-core/include/utils/
H A Dquery_param_test.cpp32 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 Dpragma.json31 '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 Dtpm.json28 # @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 Drocker.json27 # @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 Dreplay.json49 # @query-replay:
64 { 'command': 'query-replay',
75 # current instruction count can be observed with `query-replay`.
111 # with the `query-replay` command.
H A Ddump.json82 # `query-dump`. (since 2.6).
131 # The result format for `query-dump`.
147 # @query-dump:
161 { 'command': 'query-dump', 'returns': 'DumpQueryResult' }
198 # @query-dump-guest-memory-capability:
212 { 'command': 'query-dump-guest-memory-capability',
/openbmc/bmcweb/redfish-core/include/utils/
H A Dquery_param.hpp167 // The struct stores the parsed query parameters of the default Redfish route.
195 // query parameters themselves, so that the default Redfish route will delegate
206 // Delegates query parameters according to the given |queryCapabilities|
207 // This function doesn't check query parameter conflicts since the parse
209 // Returns a delegated query object which can be used by individual resource
210 // handlers so that handlers don't need to query again.
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 in delegate()
259 getExpandType(std::string_view value,Query & query) getExpandType() argument
327 getSkipParam(std::string_view value,Query & query) getSkipParam() argument
332 getTopParam(std::string_view value,Query & query) getTopParam() argument
356 getSelectParam(std::string_view value,Query & query) getSelectParam() argument
382 getFilterParam(std::string_view value,Query & query) getFilterParam() argument
715 formatQueryForExpand(const Query & query) formatQueryForExpand() argument
786 startQuery(const Query & query,const Query & delegated,const crow::Request & req) startQuery() argument
880 processTopAndSkip(const Query & query,crow::Response & res) processTopAndSkip() argument
998 processAllParams(crow::App & app,const Query & query,const Query & delegated,std::function<void (crow::Response &)> & completionHandler,crow::Response & intermediateResponse,const crow::Request & req) processAllParams() argument
[all...]
/openbmc/qemu/chardev/
H A Dwctablet.c73 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 Dtypeahead.jquery.js451 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 D0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch4 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 Dgtk-immodules-cache.bbclass25 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 Dupdate_gtk_immodules_cache8 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 DKconfig20 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 Ds390-cpu-topology.rst21 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 D0001-tests-Remove-blocking_adaptation.cpp.patch7 …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 DREADME.txt1 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 Dcpu-hotplug.rst28 (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 Dmanaged-startup.rst17 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 Dtrace-events31 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 Dreturns-bad-type.json4 '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 Ddump-gerrit.py39 query = list(
55 for change in query:
/openbmc/openbmc/poky/meta/recipes-gnome/gdk-pixbuf/
H A Dgdk-pixbuf_2.42.12.bb58 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 \
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dinactive-node-nbd.out13 {"execute": "query-block-exports", "arguments": {}}
17 {"execute": "query-block-exports", "arguments": {}}
27 {"execute": "query-block-exports", "arguments": {}}
31 {"execute": "query-block-exports", "arguments": {}}
41 {"execute": "query-block-exports", "arguments": {}}
45 {"execute": "query-block-exports", "arguments": {}}
58 {"execute": "query-block-exports", "arguments": {}}
62 {"execute": "query-block-exports", "arguments": {}}
73 {"execute": "query-block-exports", "arguments": {}}
77 {"execute": "query-block-exports", "arguments": {}}
[all …]
/openbmc/openbmc/poky/meta/recipes-gnome/librsvg/librsvg/
H A D0001-gdk-pixbuf-loader-meson.build-do-not-look-for-gdk-pi.patch5 gdk-pixbuf-query-loaders
21 …dep.get_variable(pkgconfig: 'gdk_pixbuf_query_loaders', default_value: 'gdk-pixbuf-query-loaders'))
/openbmc/qemu/tests/qemu-iotests/
H A D307.out7 {"execute": "query-block-exports", "arguments": {}}
13 {"execute": "query-block-exports", "arguments": {}}
36 {"execute": "query-block-exports", "arguments": {}}
42 {"execute": "query-block-exports", "arguments": {}}
74 {"execute": "query-block-exports", "arguments": {}}
110 {"execute": "query-block-exports", "arguments": {}}
132 {"execute": "query-block-exports", "arguments": {}}

12345678910