Home
last modified time | relevance | path

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

1234

/xen-4.10.0-shim-comet/xen/drivers/char/
A Darm-uart.c44 char *options; in dt_uart_init() local
76 options = strchr(opt_dtuart, ':'); in dt_uart_init()
77 if ( options != NULL ) in dt_uart_init()
78 *(options++) = '\0'; in dt_uart_init()
80 options = ""; in dt_uart_init()
82 printk("Looking for dtuart at \"%s\", options \"%s\"\n", devpath, options); in dt_uart_init()
94 ret = device_init(dev, DEVICE_SERIAL, options); in dt_uart_init()
/xen-4.10.0-shim-comet/tools/xenmon/
A Dxenmon.py67 options, args = None, None variable
271 global dom_in_use, options
431 if options.waited:
564 global options
580 while options.duration == 0 or interval < (options.duration * 1000):
654 global options
669 global options
691 if options.mspersample < 0:
695 if not options.live and options.duration != 0 and \
696 options.mspersample > options.duration * 1000:
[all …]
/xen-4.10.0-shim-comet/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.py144 marker, ident, version, options, res1, res2 = \
159 if options & IHDR_OPT_RESZ_MASK:
161 % (options & IHDR_OPT_RESZ_MASK))
168 ((options & IHDR_OPT_BIT_ENDIAN) != IHDR_OPT_LE) ):
172 endian = ["little", "big"][options & IHDR_OPT_LE]
/xen-4.10.0-shim-comet/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-4.10.0-shim-comet/docs/misc/
A Defi.markdown52 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.txt7 +- Code maturity level options
137 - misc options: "option" <symbol>[=<value>]
140 symbol. These options are currently possible:
267 <config options>
270 attributes as options.
274 <config options>
278 separate list of options.
283 <choice options>
304 <comment options>
308 possible options are dependencies.
[all …]
A Dprintk-formats.txt1 Xen custom %p format options. A subset, borrowed from Linux.
/xen-4.10.0-shim-comet/tools/pygrub/src/fsimage/
A Dfsimage.c265 char *options = NULL; in fsimage_open() local
270 &name, &offset, &options)) in fsimage_open()
276 if ((fs->fs = fsi_open_fsimage(name, offset, options)) == NULL) { in fsimage_open()
/xen-4.10.0-shim-comet/tools/libfsimage/common/
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()
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_grub.c224 fsig_mount(fsi_t *fsi, const char *path, const char *options) in fsig_mount() argument
241 if (!ops->fpo_mount(ffi, options)) { in fsig_mount()
/xen-4.10.0-shim-comet/tools/libxc/
A DMakefile271 zlib-options =
273 zlib-options = $(ZLIB)
276 xc_dom_bzimageloader.o: CFLAGS += $(filter -D%,$(zlib-options))
277 xc_dom_bzimageloader.opic: CFLAGS += $(filter -D%,$(zlib-options))
279 libxenguest.so.$(MAJOR).$(MINOR): COMPRESSION_LIBS = $(filter -l%,$(zlib-options))
A Dxc_sr_stream_format.h19 uint16_t options; member
/xen-4.10.0-shim-comet/tools/firmware/
A DRules.mk16 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen-4.10.0-shim-comet/
A DINSTALL8 * History of options
26 options. It will pass them to the configure scripts in the tools,
29 Individual subsystems can be selected by one of the following options.
36 The well known GNU configure options to specify the target directories.
112 additional options passed to its configure script.
152 enough to specify just --enable-stubdom and leave these options alone.
174 be passed as make options, like 'make variable=value'. Having these
178 In addition to pass variables as make options it is also supported to
264 Building the python tools may fail unless certain options are passed to
307 History of options
/xen-4.10.0-shim-comet/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-4.10.0-shim-comet/tools/tests/x86_emulator/
A Dtestcase.mk5 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen-4.10.0-shim-comet/xen/arch/x86/boot/
A Dbuild32.mk5 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen-4.10.0-shim-comet/xen/arch/x86/
A DRules.mk15 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen-4.10.0-shim-comet/xen/arch/arm/
A DRules.mk11 $(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))
/xen-4.10.0-shim-comet/tools/libacpi/
A Dmk_dsdt.c105 static struct option options[] = { variable
128 int opt = getopt_long(argc, argv, "", options, NULL); in main()
/xen-4.10.0-shim-comet/tools/fuzz/x86_instruction_emulator/
A Dfuzz-emul.c32 unsigned long options; member
714 unsigned long bitmap = c->options; in disable_hooks()
766 unsigned long bitmap = c->options; in sanitize_input()
769 c->options &= ~((1<<HOOK_read)|(1<<HOOK_insn_fetch)); in sanitize_input()
/xen-4.10.0-shim-comet/tools/examples/
A Dxlexample.pvhlinux25 # Kernel command line options

Completed in 38 milliseconds

1234