Lines Matching full:for

10 For an in-depth introduction to the QAPI framework, please refer to
11 :doc:`qapi-code-gen`. For the QMP protocol, see the
20 unstructured text`_ section for further guidance on commands that
49 For all the examples in the next sections, the test setup is the same and is
123 earlier, it's preferable for commands to live in QEMU subsystems. But
141 5. Printing to the terminal is discouraged for QMP commands, we do it here
149 Then check the terminal running QEMU and look for the "Hello, world" string. If
190 for (int i = 0; i < times; i++) {
267 error for special handling
302 1. The "mon" and "qdict" arguments are mandatory for all HMP functions. The
344 documentation for information about the other types.
350 For a QMP command that to be considered stable and supported long term,
356 common case for any new QMP command that is intended to be used by
360 for human operators. While they may return large amounts of formatted
362 The overhead of defining a fine grained QAPI type for the data may not
365 however, it is mandatory for the command to be marked unstable.
373 `Writing a debugging aid returning unstructured text`_ section for
379 For this example we will write the query-option-roms command, which
380 returns information about ROMs loaded into the option ROM space. For
384 For each option ROM, we want to return two pieces of information: the
386 new QAPI type for that, as shown below::
433 for (int i = 0; i < nb_option_roms; i++) {
455 which is mandatory for all QMP functions)
493 for (tail = info_list; tail; tail = tail->next) {
507 qmp_query_option_roms(). For user defined types, QAPI will generate a
509 free the types you define and qapi_free_QAPI_TYPE_NAMEList() for list
518 hmp-commands-info.hx, not hmp-commands.hx. The entry for the "info
542 as a debugging aid and allows for returning unstructured text, such as
557 # @unstable: This command is meant for debugging.
568 struct with a string member. It is intended to be used for all
635 purpose HMP info handler for this scenario. All that is required to expose