Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 100) sorted by relevance

1234

/xen/xen/drivers/char/
A Darm-uart.c45 char *options; in dt_uart_init() local
77 options = strchr(opt_dtuart, ':'); in dt_uart_init()
78 if ( options != NULL ) in dt_uart_init()
79 *(options++) = '\0'; in dt_uart_init()
81 options = ""; in dt_uart_init()
83 printk("Looking for dtuart at \"%s\", options \"%s\"\n", devpath, options); in dt_uart_init()
95 ret = device_init(dev, DEVICE_SERIAL, options); in dt_uart_init()
/xen/tools/xenmon/
A Dxenmon.py69 options, args = None, None variable
273 global dom_in_use, options
433 if options.waited:
566 global options
582 while options.duration == 0 or interval < (options.duration * 1000):
656 global options
671 global options
693 if options.mspersample < 0:
697 if not options.live and options.duration != 0 and \
698 options.mspersample > options.duration * 1000:
[all …]
/xen/xen/arch/arm/
A DKconfig.debug27 selecting one of the platform specific options below if
31 options; the platform specific options are deprecated
41 selecting one of the platform specific options below if
45 options; the platform specific options are deprecated
55 selecting one of the platform specific options below if
59 options; the platform specific options are deprecated
69 selecting one of the platform specific options below if
73 options; the platform specific options are deprecated
87 options; the platform specific options are deprecated
100 options; the platform specific options are deprecated
[all …]
A Darch.mk6 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen/tools/python/xen/migration/
A Dlibxl.py90 ident, version, options = self.unpack_exact(HDR_FORMAT)
100 if options & HDR_OPT_RESZ_MASK:
102 (options & HDR_OPT_RESZ_MASK))
105 ((options & HDR_OPT_BIT_ENDIAN) != HDR_OPT_LE) ):
109 endian = ["little", "big"][options & HDR_OPT_LE]
111 if options & HDR_OPT_LEGACY:
A Dlibxc.py148 marker, ident, version, options, res1, res2 = \
166 if options & IHDR_OPT_RESZ_MASK:
168 (options & IHDR_OPT_RESZ_MASK))
176 ((options & IHDR_OPT_BIT_ENDIAN) != IHDR_OPT_LE) ):
180 endian = ["little", "big"][options & IHDR_OPT_LE]
/xen/tools/libfsimage/zfs/
A Dfsi_zfs.c76 fsi_zfs_mount(fsi_file_t *ffi, const char *options) in fsi_zfs_mount() argument
82 if (options != NULL) { in fsi_zfs_mount()
83 if (strlen(options) < MAXNAMELEN) { in fsi_zfs_mount()
84 strcpy(current_bootfs, options); in fsi_zfs_mount()
/xen/docs/misc/arm/
A Dearly-printk.txt12 "Early printk" in the "Debugging options" of Kconfig. You will then need to
13 set other options, which depends on the driver selected.
18 Other options depends on the driver selected:
33 - For all other uarts there are no additional options.
A Dbig.LITTLE.txt30 line options [1]. For DomUs, the `cpus' option should be added to all VM
34 following options run all domain vcpus on either big or LITTLE cores
/xen/docs/misc/
A Defi.pandoc52 options=console=vga,com1 com1=57600 loglvl=all noreboot
53 kernel=vmlinuz-3.0.31-0.4-xen [domain 0 command line options]
67 ###`options=<text>`
69 Specifies the options passed to the hypervisor, see [Xen Hypervisor Command
72 ###`kernel=<filename>[ <options>]`
74 Specifies the Dom0 kernel binary and the options to pass to it.
76 The options should in general be the same as is used when booting
117 Extra options to be passed to Xen can also be specified on the command line,
A Dkconfig-language.rst11 +- Code maturity level options
102 "default y" so people will see those other options.
208 - misc options: "option" <symbol>[=<value>]
212 symbol. These options are currently possible:
340 <config options>
343 attributes as options.
348 <config options>
394 <choice options>
420 <comment options>
424 possible options are dependencies.
[all …]
/xen/
A DINSTALL8 * History of options
30 to find available configuration options. This is because it is only
32 small subset of the options. Attempts to change other options will be
33 silently overridden. The only way to find which configuration options
46 options. It will pass them to the configure scripts in the tools,
49 Individual subsystems can be selected by one of the following options.
56 The well known GNU configure options to specify the target directories.
132 additional options passed to its configure script.
190 be passed as make options, like 'make variable=value'. Having these
194 In addition to pass variables as make options it is also supported to
[all …]
/xen/tools/pygrub/src/fsimage/
A Dfsimage.c254 char *options = NULL; in fsimage_open() local
259 &name, &offset, &options)) in fsimage_open()
265 if ((fs->fs = fsi_open_fsimage(name, offset, options)) == NULL) { in fsimage_open()
/xen/tools/libxc/
A DMakefile267 zlib-options =
269 zlib-options = $(ZLIB)
272 xc_dom_bzimageloader.o: CFLAGS += $(filter -D%,$(zlib-options))
273 xc_dom_bzimageloader.opic: CFLAGS += $(filter -D%,$(zlib-options))
275 libxenguest.so.$(MAJOR).$(MINOR): COMPRESSION_LIBS = $(filter -l%,$(zlib-options))
A Dxc_sr_stream_format.h19 uint16_t options; member
/xen/tools/libfsimage/common/
A Dfsimage.c39 fsi_t *fsi_open_fsimage(const char *path, uint64_t off, const char *options) in fsi_open_fsimage() argument
57 err = find_plugin(fsi, path, options); in fsi_open_fsimage()
A Dfsimage_plugin.c178 int find_plugin(fsi_t *fsi, const char *path, const char *options) in find_plugin() argument
188 if (fp->fp_ops->fpo_mount(fsi, path, options) == 0) in find_plugin()
/xen/tools/firmware/
A DRules.mk16 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen/tools/libxl/
A Dlibxl_sr_stream_format.h15 uint32_t options; member
A Dlibxl_stream_read.c336 hdr->options = be32toh(hdr->options); in stream_header_done()
351 if (hdr->options & RESTORE_OPT_BIG_ENDIAN) { in stream_header_done()
358 hdr->options & RESTORE_OPT_LEGACY ? " (from legacy)" : ""); in stream_header_done()
/xen/xen/include/xen/
A Dsched.h391 unsigned int options; /* copy of createdomain flags */ member
990 evaluate_nospec(!(d->options & XEN_DOMCTL_CDF_hvm)); in is_pv_domain()
1033 evaluate_nospec(d->options & XEN_DOMCTL_CDF_hvm); in is_hvm_domain()
1045 evaluate_nospec(d->options & XEN_DOMCTL_CDF_hap); in hap_enabled()
1061 return d->options & XEN_DOMCTL_CDF_xs_domain; in is_xenstore_domain()
1066 return evaluate_nospec(d->options & XEN_DOMCTL_CDF_iommu); in is_iommu_enabled()
/xen/tools/tests/x86_emulator/
A Dtestcase.mk5 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen/docs/misc/xen-makefiles/
A Dmakefiles.rst22 options, and any subdirectories to be entered recursively.
86 CFLAGS-y specifies options for compiling with $(CC).
87 AFLAGS-y specifies assembler options.
109 invocation. The latter will force a rebuild if any options
/xen/xen/arch/x86/boot/
A Dbuild32.mk5 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen/docs/man/
A Dxl.conf.5.pod8 options.
10 For details of per-domain configuration options please see
213 Due to bug(s), these options may not interact well with other options

Completed in 23 milliseconds

1234