Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 91) sorted by relevance

1234

/xen/tools/include/xen-foreign/
A Dmkheader.py114 output = ""; variable
124 output += """
137 output += "\n";
155 output += "\n";
170 output += "\n";
182 output += "\n";
187 output += "\n";
196 output = re.sub("\\b%s\\b" % define, replace, output); variable
205 output = re.sub("\\b(%s)_t\\b" % struct, "\\1_%s_t" % arch, output); variable
209 output = re.sub("\\b%s\\b" % old, new, output) variable
[all …]
/xen/tools/libxc/
A Dxc_dom_decompress_lz4.c42 unsigned char *inp = *blob, *output, *outp; in xc_try_lz4_decode() local
58 output = malloc(out_len); in xc_try_lz4_decode()
59 if (!output) { in xc_try_lz4_decode()
63 outp = output; in xc_try_lz4_decode()
92 dest_len = out_len - (outp - output); in xc_try_lz4_decode()
106 if ( xc_dom_register_external(dom, output, out_len) ) in xc_try_lz4_decode()
111 *blob = output; in xc_try_lz4_decode()
125 free(output); in xc_try_lz4_decode()
/xen/stubdom/vtpmmgr/
A Dtpmrsa.c61 unsigned char *output ) in tpmrsa_public() argument
79 MPI_CHK( mpi_write_binary( &T, output, olen ) ); in tpmrsa_public()
156 unsigned char *output ) in tpmrsa_pub_encrypt_oaep() argument
160 unsigned char* seed = output + 1; in tpmrsa_pub_encrypt_oaep()
161 unsigned char* db = output + HASH_LEN +1; in tpmrsa_pub_encrypt_oaep()
171 output[0] = 0; in tpmrsa_pub_encrypt_oaep()
198 return tpmrsa_public(ctx, output, output); in tpmrsa_pub_encrypt_oaep()
A Dtpmrsa.h62 unsigned char *output );
/xen/tools/misc/
A Dxenpvnetboot61 (status, output) = commands.getstatusoutput(cmd)
63 raise RuntimeError('Command: (%s) failed: (%s) %s' % (cmd, status, output))
158 (status, output) = commands.getstatusoutput(cmd)
160 raise RuntimeError('Command: (%s) failed: (%s) %s' % (cmd, status, output))
209 if not opts.output or opts.output == '-':
212 fd = os.open(opts.output, os.O_WRONLY)
277 output = format_sxp(kernel, ramdisk, opts.args)
279 output = format_simple(kernel, ramdisk, opts.args, '\n')
281 output = format_simple(kernel, ramdisk, opts.args, '\0')
287 os.write(fd, output)
/xen/docs/man/
A Dxentrace_format.1.pod13 definitions (I<DEFS-FILE>), printing to standard output.
24 [ the `d' format specifier output in decimal, alternatively `x'
25 will output in hexadecimal and `o' will output in octal ]
36 this script may not be able to keep up with the output of
38 should have B<xentrace> output to a file for processing off-line.
A Dxentop.1.pod26 output version information and exit
34 output network information
38 output vbd block device data
46 output VCPU data
50 output the full domain name (not truncated)
54 output data in batch mode (to stdout)
A Dxentrace.8.pod12 output in the following binary format (host endian):
20 Data is dumped onto the standard output (which must not be a TTY) or a
23 The output should be parsed using the tool xentrace_format, which can
24 produce human-readable output in ASCII format.
34 all new records to the output
/xen/xen/common/
A Dunlz4.c28 unsigned char *output, in unlz4() argument
45 if (output) { in unlz4()
46 outp = output; in unlz4()
139 if (output) in unlz4()
163 if (!output) in unlz4()
A Dunlzo.c131 u8 *output, unsigned int *posp, in unlzo() argument
141 if (output) { in unlzo()
142 out_buf = output; in unlzo()
243 if (output) in unlzo()
261 if (!output) in unlzo()
A Dgunzip.c107 __init int perform_gunzip(char *output, char *image, unsigned long image_len) in perform_gunzip() argument
114 window = (unsigned char *)output; in perform_gunzip()
/xen/xen/tools/
A Dgen-cpuid.py14 def __init__(self, input, output): argument
18 self.output = open_file_or_fd(output, "w", 2)
346 state.output.write(
355 state.output.write(
397 state.output.write(
403 state.output.write(
415 state.output.write(
419 state.output.write(
425 state.output.write(
429 state.output.write(
/xen/tools/xl/
A Dxl_misc.c215 char *output; in main_qemu_monitor_command() local
230 ret = libxl_qemu_monitor_command(ctx, domid, cmd, &output, NULL); in main_qemu_monitor_command()
231 if (!ret && output) { in main_qemu_monitor_command()
232 printf("%s\n", output); in main_qemu_monitor_command()
233 free(output); in main_qemu_monitor_command()
/xen/xen/include/asm-x86/guest/
A Dhyperv-hcall.h64 paddr_t input, paddr_t output) in hv_do_rep_hypercall() argument
74 status = hv_do_hypercall(control, input, output); in hv_do_rep_hypercall()
/xen/docs/misc/
A Dconsole.txt66 * output: an identifier only meaningful for qemu/xenconsoled
72 output = pty
90 output = chardev:<some internal identifier>
108 are given to qemu. The output of a serial is specified as argument to
115 emulated serial that has a pty as output. Xenconsole takes a domid as
138 output goes is still specified using qemu command line options.
141 output from the stubdom to dom0. The pv console backend for stubdom's pv
/xen/xen/include/xen/
A Dgunzip.h5 int perform_gunzip(char *output, char *image, unsigned long image_len);
/xen/xen/arch/arm/
A Dkernel.c255 char *output, *input; in kernel_decompress() local
288 output = __vmap(&mfn, 1 << kernel_order_out, 1, 1, PAGE_HYPERVISOR, VMAP_DEFAULT); in kernel_decompress()
290 rc = perform_gunzip(output, input, size); in kernel_decompress()
291 clean_dcache_va_range(output, output_size); in kernel_decompress()
293 vunmap(output); in kernel_decompress()
A DKconfig.debug25 output to a 8250 UART. You can use this option to
39 output to a Cadence UART. You can use this option to
53 output to a Exynos 4210 UART. You can use this option to
67 output to a MESON UART. You can use this option to
81 output to a MVEBU UART. You can use this option to
94 output to a PL011 UART. You can use this option to
107 output to a SCIF UART. You can use this option to
/xen/tools/flask/policy/modules/
A Dguest_features.te12 # Allow guest console output to the serial console. This is used by PV Linux
13 # and stub domains for early boot output, so don't audit even when we deny it.
/xen/docs/
A DMakefile102 -V header=Xen $$< -t man --output $$@
124 $(PANDOC) --standalone $$< -t html --toc --output $$@
141 $(PANDOC) --standalone $$< -t plain --output $$@
225 $(PANDOC) --number-sections --toc --standalone $$< --output $$@
/xen/tools/xenstat/xentop/
A DTODO29 -b batch mode dump snapshots to standard output (used with -n)
30 -n number of iterations to dump to standard output (unlimited if not specified)
/xen/xen/drivers/video/
A DKconfig11 Enable VGA output for the Xen hypervisor.
/xen/scripts/
A Dget_maintainer.pl513 output(@maintainers);
518 output(@scm);
523 output(@status);
528 output(@subsystem);
533 output(@web);
1293 my $output = `$cmd`;
1294 $output =~ s/^\s*//gm;
1295 @lines = split("\n", $output);
1304 my $output = `$cmd`;
1305 @lines = split("\n", $output);
[all …]
/xen/stubdom/caml/
A DMakefile21 $(OCAMLOPT) $(LIBS) $^ -output-obj -o $@
/xen/tools/xenstore/
A Dxenstore_client.c59 output(const char *fmt, ...) { in output() function
345 output("%s: ", argv[optind]); in perform()
349 output("%s\n", sanitise_value(&ebuf, val, len)); in perform()
443 output("%s/", argv[optind]); in perform()
444 output("%s\n", list[i]); in perform()

Completed in 26 milliseconds

1234