/xen/tools/golang/xenlight/ |
A D | gengotypes.py | 76 s += 'type {} int\n'.format(typename) 102 s += '{} struct {{\n'.format(name) 158 s += 'is{}()\n'.format(interface_name) 187 s = '{} {}\n'.format(fname, ftype) 385 s += 'case {}:\n'.format(case_val) 423 cslice = 'c{}'.format(goname) 426 s += 'x.{} = nil\n'.format(goname) 428 s += '{} := '.format(cslice) 476 return func.format(goname, cname, body) 556 s += 'case {}:\n'.format(key_val) [all …]
|
/xen/tools/firmware/rombios/ |
A D | rombios.h | 43 #define printf(format, p...) bios_printf(BIOS_PRINTF_SCREEN, format, ##p) argument 49 # define BX_DEBUG(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p) argument 50 # define BX_INFO(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p) argument 52 # define BX_DEBUG(format, p...) argument 53 # define BX_INFO(format, p...) argument 55 #define BX_PANIC(format, p...) bios_printf(BIOS_PRINTF_DEBHALT, format, ##p) argument
|
/xen/xen/drivers/acpi/utilities/ |
A D | utmisc.c | 137 acpi_ut_error(const char *module_name, u32 line_number, char *format, ...) in acpi_ut_error() argument 143 va_start(args, format); in acpi_ut_error() 144 acpi_os_vprintf(format, args); in acpi_ut_error() 150 acpi_ut_warning(const char *module_name, u32 line_number, char *format, ...) in acpi_ut_warning() argument 156 va_start(args, format); in acpi_ut_warning() 157 acpi_os_vprintf(format, args); in acpi_ut_warning() 164 acpi_ut_info(const char *module_name, u32 line_number, char *format, ...) in acpi_ut_info() argument 174 va_start(args, format); in acpi_ut_info() 175 acpi_os_vprintf(format, args); in acpi_ut_info()
|
/xen/xen/include/xen/ |
A D | lib.h | 99 __attribute__ ((format (printf, 1, 2))); 103 __attribute__ ((format (printf, 1, 2))) 109 extern void printk(const char *format, ...) 110 __attribute__ ((format (printf, 1, 2))); 123 __attribute__ ((format (printf, 2, 3))); 125 __attribute__ ((format (printf, 1, 2))); 156 __attribute__ ((format (printf, 3, 4))); 158 __attribute__ ((format (printf, 3, 0))); 160 __attribute__ ((format (printf, 3, 4))); 162 __attribute__ ((format (printf, 3, 0))); [all …]
|
/xen/tools/libs/toollog/include/ |
A D | xentoollog.h | 50 const char *format /* without level, context, \n */, 52 __attribute__((format(printf,5,0))); 95 const char *format /* does not contain \n */, 96 va_list) __attribute__((format(printf,5,0))); 102 const char *format /* does not contain \n */, 103 ...) __attribute__((format(printf,5,6)));
|
/xen/tools/libs/toollog/ |
A D | xtl_core.c | 45 const char *format /* does not contain \n */, in xtl_logv() argument 49 logger->vmessage(logger,level,errnoval,context,format,al); in xtl_logv() 57 const char *format /* does not contain \n */, in xtl_log() argument 60 va_start(al,format); in xtl_log() 61 xtl_logv(logger,level,errnoval,context,format,al); in xtl_log()
|
A D | xtl_logger_stdio.c | 50 const char *format, in stdiostream_vmessage() argument 79 vfprintf(lg->f, format, al); in stdiostream_vmessage() 91 const char *format, ...) in stdiostream_message() argument 94 va_start(al,format); in stdiostream_message() 95 stdiostream_vmessage(logger_in, level, -1, context, format, al); in stdiostream_message()
|
/xen/docs/man/ |
A D | xentrace_format.1.pod | 11 B<xentrace_format> parses trace data in B<xentrace> binary format from 15 The rules in I<DEFS-FILE> should have the format shown below: 17 I<event_id> I<whitespace> I<format> 21 The format string may include format specifiers, such as: 24 [ the `d' format specifier output in decimal, alternatively `x' 32 A sample format file for Xen's predefined trace events is available
|
A D | xl-disk-configuration.5.pod | 7 This document specifies the xl config file format disk configuration 15 [<target>, [<format>, [<vdev>, [<access>]]]], 23 format=raw, vdev=hda, access=rw, target=/dev/vg/guest-volume 97 =item B<format> 103 Specifies the format of image file. 448 [<format>:][<target>],<vdev>[:<devtype>],<access> (deprecated) 455 =item B<format> 461 Specifies the format (deprecated) 471 recognised as specifying the corresponding format. They are 472 equivalent to C<format=FORMAT> or the specification of B<format> [all …]
|
/xen/xen/include/acpi/ |
A D | acutils.h | 167 u32 component_id, char *format, ...) ACPI_PRINTF_LIKE(6); 175 char *format, ...) ACPI_PRINTF_LIKE(6); 179 u32 line_number, char *format, ...) ACPI_PRINTF_LIKE(3); 184 acpi_status status, char *format, ...) ACPI_PRINTF_LIKE(4); 188 u32 line_number, char *format, ...) ACPI_PRINTF_LIKE(3); 192 u32 line_number, char *format, ...) ACPI_PRINTF_LIKE(3);
|
A D | acpiosxf.h | 85 void ACPI_INTERNAL_VAR_XFACE acpi_os_printf(const char *format, ...); 87 void acpi_os_vprintf(const char *format, va_list args);
|
/xen/tools/libxl/ |
A D | libxlu_disk_l.l | 110 if (!strcmp(str,"")) DSET(dpc,format,FORMAT,str,RAW); in setformat() 111 else if (!strcmp(str,"raw")) DSET(dpc,format,FORMAT,str,RAW); in setformat() 112 else if (!strcmp(str,"qcow")) DSET(dpc,format,FORMAT,str,QCOW); in setformat() 113 else if (!strcmp(str,"qcow2")) DSET(dpc,format,FORMAT,str,QCOW2); in setformat() 114 else if (!strcmp(str,"vhd")) DSET(dpc,format,FORMAT,str,VHD); in setformat() 115 else if (!strcmp(str,"empty")) DSET(dpc,format,FORMAT,str,EMPTY); in setformat() 116 else if (!strcmp(str,"qed")) DSET(dpc,format,FORMAT,str,QED); in setformat() 185 format=[^,]*,? { STRIP(','); setformat(DPC, FROMEQUALS); } 265 DPC->disk->format == LIBXL_DISK_FORMAT_UNKNOWN) { 267 DPC->disk->format = LIBXL_DISK_FORMAT_EMPTY;
|
A D | libxlu_disk.c | 73 if (disk->format == LIBXL_DISK_FORMAT_UNKNOWN) { in xlu_disk_parse() 74 disk->format = LIBXL_DISK_FORMAT_RAW; in xlu_disk_parse() 80 disk->format = LIBXL_DISK_FORMAT_EMPTY; in xlu_disk_parse()
|
A D | libxl_save_helper.c | 55 __attribute__((format(printf, 5, 0))) 60 const char *format, in tellparent_vmessage() argument 64 int r = vasprintf(&formatted, format, al); in tellparent_vmessage() 97 __attribute__((noreturn,format(printf,2,3)));
|
A D | check-xl-disk-parse | 65 one 0 format=raw vdev=hda access=rw target=/dev/vg/guest-volume 82 one 0 format=raw vdev=hdc access=ro devtype=cdrom target=/root/image.iso 122 one 0 vdev=hdc,access=r,devtype=cdrom,format=empty
|
/xen/docs/misc/ |
A D | dump-core-format.txt | 1 xen dump-core format 8 Its format was changed to be based on ELF format because elf format is easily 9 extensible and handy. This document describes the new format. 10 In this document the new format is called new xen dump-core format, 11 xen dump-core format or simply dump-core format. The file of xen dump-core 12 format is called xen dump-core file or dump-core file. 21 For ELF format itself, see Tool Interface Standard(TIS) Executable and 224 The minor version will be incremented when the format 227 the major version will be incremented when the format is 230 this format version. [all …]
|
/xen/xen/tools/kconfig/tests/ |
A D | conftest.py | 100 print("[command]\n{}\n".format(' '.join(command))) 102 print("[retcode]\n{}\n".format(self.retcode)) 111 print("[output for '{}']".format(out_file)) 151 return self._run_conf('--defconfig={}'.format(defconfig_path)) 160 return self._run_conf('--{}config'.format(mode), extra_env=extra_env)
|
/xen/xen/drivers/passthrough/vtd/ |
A D | vtd.h | 44 format:1, member 57 format:1, member
|
/xen/tools/xl/ |
A D | xl_utils.h | 127 __attribute__((format(printf,4,5))); 130 __attribute__((format(printf,2,0))); 133 __attribute__((format(printf,2,3)));
|
/xen/docs/designs/ |
A D | xenstore-migration.md | 14 image format for a 'migration stream' suitable for both purposes. 18 The image format consists of a _header_ followed by 1 or more _records_. Each 54 Records immediately follow the header and have the following format: 68 NOTE: padding octets here and in all subsequent format specifications must be 142 For live update the image format will contain a `CONNECTION_DATA` record for 197 The format of `conn-spec` is dependent upon `conn-type`. 247 The image format will contain a `WATCH_DATA` record for each watch registered 286 The image format will contain a `TRANSACTION_DATA` record for each transaction 313 For live update the image format will contain a `NODE_DATA` record for each 383 A node permission specifier has the following format:
|
/xen/stubdom/ |
A D | newlib-chk.patch | 13 +__fprintf_chk (FILE *fp, int flag, const char *format, ...) 18 + va_start (ap, format); 19 + done = vfprintf (fp, format, ap); 144 +__sprintf_chk (char *s, int flags, size_t slen, const char *format, ...) 149 + va_start (arg, format); 150 + done = vsprintf (s, format, arg);
|
/xen/docs/specs/ |
A D | libxc-migration-stream.pandoc | 18 There are a number of problems with the format of the domain save 31 A new format that addresses the above is required. 33 ARM does not yet have have a domain save image format specified and 34 the format described in this specification should be suitable. 50 The image format consists of two main sections: 59 The image header describes the format of the image (version etc.). 66 The main part of the format is a sequence of different _records_. 351 [^2]: In the legacy format, this is the list of unmapped PFNs in the 758 translating the legacy format image into this new format. 760 It shall not be possible to save in the legacy format. [all …]
|
A D | libxl-migration-stream.pandoc | 21 There are a number of problems with the domain image format used in Xen 4.5 28 The legacy `libxc` format contained some information which belonged at the 32 * The legacy `libxc` format was inextensible, causing inextensibility in the 52 The image format consists of a _Header_, followed by 1 or more _Records_. 190 own image format from the stream. 243 *emulator_id*. Its format is unspecified. 315 The format may be extended by adding additional record types.
|
/xen/xen/arch/x86/ |
A D | hypercall.c | 100 unsigned int op, const char *format, ...) in hypercall_create_continuation() argument 104 const char *p = format; in hypercall_create_continuation() 111 va_start(args, format); in hypercall_create_continuation()
|
A D | Makefile | 145 $(NM) -pa --format=sysv $(@D)/.$(@F).0 \ 151 $(NM) -pa --format=sysv $(@D)/.$(@F).1 \ 157 $(NM) -pa --format=sysv $(@D)/$(@F) \ 207 $(NM) -pa --format=sysv $(@D)/.$(@F).$(VIRT_BASE).0 \ 214 $(NM) -pa --format=sysv $(@D)/.$(@F).$(VIRT_BASE).1 \ 219 $(NM) -pa --format=sysv $(@D)/$(@F) \
|