/qemu/scripts/qapi/ |
H A D | backend.py | 19 def generate(self, member in QAPIBackend 27 Generate code for the given schema into the target directory. 33 :param builtins: Generate code for built-in types? 42 def generate(self, member in QAPICBackend 50 Generate C code for the given schema into the target directory. 56 :param builtins: Generate code for built-in types?
|
H A D | main.py | 68 description='Generate code from a QAPI schema') 70 help="generate code for built-in types") 100 backend.generate(schema,
|
/qemu/docs/system/ |
H A D | tls.rst | 8 authentication. What follows is a description of how to generate 19 used to easily generate certificates and keys in the required format 54 # certtool --generate-privkey > ca-key.pem 56 To generate a self-signed certificate requires one core piece of 66 # certtool --generate-self-signed \ 124 # certtool --generate-privkey > server-hostNNN-key.pem 125 # certtool --generate-certificate \ 177 # certtool --generate-privkey > client-hostNNN-key.pem 178 # certtool --generate-certificate \ 205 migration, and later itself be migrated out to another host. To generate [all …]
|
/qemu/scripts/tracetool/format/ |
H A D | __init__.py | 16 All formats must generate their contents through the 'tracetool.out' routine. 25 generate Called to generate a format-specific file. 76 def generate(events, format, backend, group): function 81 "generate")[1] 83 raise AttributeError("format has no 'generate': %s" % format)
|
H A D | simpletrace_stap.py | 4 Generate .stp file that outputs simpletrace binary traces (DTrace with SystemTAP only). 23 def generate(events, backend, group): function 51 # Generate format string and value pairs for record header and arguments
|
H A D | stap.py | 4 Generate .stp file (DTrace with SystemTAP only). 36 def generate(events, backend, group): function
|
H A D | c.py | 18 def generate(events, backend, group): function 65 backend.generate(event, group)
|
H A D | h.py | 18 def generate(events, backend, group): function 70 backend.generate(e, group)
|
/qemu/target/hexagon/ |
H A D | README | 38 We start with scripts that generate a bunch of include files. This 57 gen_helper_<NAME> will generate a TCG call to the helper function 103 The generator checks for fGEN_TCG_<tag> macro. This allows us to generate 119 the short semantics option and #define the macros to generate TCG code. One 158 Notice that we also generate a variable named <operand>_off for each operand of 166 we don't generate them when an override is present. Here is what we generate 183 We also generate an analyze_<tag> function for each instruction. Currently, 217 The QEMU_GENERATE variable determines whether we want the macro to generate TCG 218 code. If QEMU_GENERATE is not defined, we want the macro to generate vanilla 223 The functions in this file generate TCG code for a translation block. Some [all …]
|
H A D | meson.build | 43 # We use Python scripts to generate the following files 104 # Generate the input to the QEMU decodetree.py script 237 # Generate the trans_* functions that the decoder will use 267 # We use flex/bison based idef-parser to generate TCG code for a lot 359 # We use Python scripts to generate the following files
|
/qemu/tests/lcitool/ |
H A D | refresh | 3 # Re-generate container recipes 44 def generate(filename, cmd, trailer): function 45 print("Generate %s" % filename) 49 raise Exception("Failed to generate %s: %s" % (filename, lcitool.stderr)) 78 generate(filename, cmd, trailer) 84 generate(filename, cmd, trailer) 90 generate(filename, cmd, None) 97 generate(filename, cmd, trailer)
|
/qemu/scripts/ |
H A D | modinfo-generate.py | 35 def generate(name, lines, enabled): function 73 print("/* generated by scripts/modinfo-generate.py */") 84 print('Expected: modinfo-generate.py --devices ' 104 moddeps = generate(basename, lines, enabled)
|
/qemu/scripts/tracetool/backend/ |
H A D | __init__.py | 16 All backends must generate their contents through the 'tracetool.out' routine. 38 generate_<format>_begin(events) Generate backend- and format-specific file 40 generate_<format>_end(events) Generate backend- and format-specific file 42 generate_<format>(event) Generate backend- and format-specific contents 118 def generate(self, event, group): member in Wrapper
|
/qemu/tests/image-fuzzer/qcow2/ |
H A D | layout.py | 122 """Generate a random valid header.""" 184 """Generate the header extension for the backing file format.""" 212 """Generate a random header extension for names of features used in 260 """Generate a mandatory header extension marking end of header 269 """Generate random valid L1 and L2 tables.""" 271 """Generate one L2 entry.""" 284 """Generate one L1 entry.""" 337 """Generate random refcount blocks and refcount table.""" 400 """Generate a refcount table entry.""" 406 """Generate a list of entries for the current block.""" [all …]
|
/qemu/docs/ |
H A D | image-fuzzer.txt | 44 The runner uses an external image fuzzer to generate test images. An image 183 6. Should generate the test image with the correct structure based on an image 186 8. Should generate a seed if it is not specified as an input parameter. 187 9. The same seed should generate the same image for the same action vector, 221 allows the fuzzer to generate the pool of all available areas can be fuzzed
|
/qemu/tests/qtest/migration/ |
H A D | Makefile | 14 @echo "Create migration guest includes. We generate a binary." 20 @echo " $(MAKE) target Generate for that target"
|
/qemu/scripts/tracetool/ |
H A D | __init__.py | 348 """Generate the output for the given (format, backends) pair. 382 """Exception for calls to generate.""" 412 def generate(events, group, format, backends, function 414 """Generate the output for the given (format, backends) pair. 419 list of Event objects to generate for 451 tracetool.format.generate(events, format, backend, group)
|
/qemu/hw/i386/ |
H A D | x86-iommu.c | 56 /* Generate one MSI message from VTDIrq info */ 61 /* Generate address bits */ in x86_iommu_irq_to_msi_message() 70 /* Generate data bits */ in x86_iommu_irq_to_msi_message()
|
/qemu/tests/qemu-iotests/ |
H A D | common.tls | 120 --generate-self-signed \ 149 --generate-certificate \ 180 --generate-certificate \
|
/qemu/linux-user/xtensa/ |
H A D | signal.c | 134 /* Generate instruction: MOVI a2, __NR_rt_sigreturn */ in install_sigtramp() 138 /* Generate instruction: SYSCALL */ in install_sigtramp() 143 /* Generate instruction: MOVI a2, __NR_rt_sigreturn */ in install_sigtramp() 147 /* Generate instruction: SYSCALL */ in install_sigtramp()
|
/qemu/target/hexagon/idef-parser/ |
H A D | README.rst | 172 ``bison`` is used to generate the actual parser, starting from the parsing 412 context is explicitly passed to all the functions because the parser we generate 416 involved tokens to generate pretty error reporting, able to highlight the 434 then, if you are using a Bison version > 3.7.1 you can ask Bison to generate 471 These instruction generate valid tinycode generator code, which however fail 653 able to generate code in the order of evaluation of the various rules, without, 710 A more radical improvement will use the parser, not to generate directly the 711 tinycode generator code, but to generate an intermediate representation like the
|
/qemu/bsd-user/netbsd/ |
H A D | target_os_signal.h | 54 #define TARGET_SA_NOCLDSTOP 0x0008 /* do not generate SIGCHLD on child stop */ 55 #define TARGET_SA_SIGINFO 0x0040 /* generate siginfo_t */
|
/qemu/include/hw/watchdog/ |
H A D | allwinner-wdt.h | 101 * Check if watchdog can generate system reset 103 * @return true if watchdog can generate system reset
|
/qemu/bsd-user/openbsd/ |
H A D | target_os_signal.h | 54 #define TARGET_SA_NOCLDSTOP 0x0008 /* do not generate SIGCHLD on child stop */ 55 #define TARGET_SA_SIGINFO 0x0040 /* generate siginfo_t */
|
/qemu/scripts/rust/ |
H A D | rustc_args.py | 3 """Generate rustc arguments for meson rust builds. 169 help="generate --check-cfg arguments for features", 177 help="generate arguments from [lints] table",
|