/xen/xen/include/asm-arm/ |
A D | setup.h | 42 bootmodule_kind kind; member 51 bootmodule_kind kind; member 105 struct bootmodule *add_boot_module(bootmodule_kind kind, 107 struct bootmodule *boot_module_find_by_kind(bootmodule_kind kind); 108 struct bootmodule * boot_module_find_by_addr_and_kind(bootmodule_kind kind, 111 bootmodule_kind kind, paddr_t start, bool domU); 112 struct bootcmdline *boot_cmdline_find_by_kind(bootmodule_kind kind); 114 const char *boot_module_kind_as_string(bootmodule_kind kind);
|
/xen/xen/tools/ |
A D | get-fields.sh | 80 kind="$token;$kind" 118 test -z "$named" || kind=${kind#*;} 155 kind=$token 156 if [ $kind = union ] 168 if [ $level = 1 -a $kind = union ] 223 if [ $kind = union ] 239 if [ $kind = union ] 441 local level=1 fields= kind= id= arrlvl=1 token 448 kind=$token 449 printf %s " CHECK_SIZE_($kind, $1)" [all …]
|
/xen/xen/arch/arm/ |
A D | bootfdt.c | 211 bootmodule_kind kind; in process_multiboot_node() local 240 kind = BOOTMOD_KERNEL; in process_multiboot_node() 243 kind = BOOTMOD_RAMDISK; in process_multiboot_node() 245 kind = BOOTMOD_XSM; in process_multiboot_node() 247 kind = BOOTMOD_GUEST_DTB; in process_multiboot_node() 249 kind = BOOTMOD_UNKNOWN; in process_multiboot_node() 262 if ( kind == BOOTMOD_UNKNOWN ) in process_multiboot_node() 266 case 0: kind = BOOTMOD_KERNEL; break; in process_multiboot_node() 271 kind = BOOTMOD_XSM; in process_multiboot_node() 275 add_boot_module(kind, start, size, domU); in process_multiboot_node() [all …]
|
A D | setup.c | 235 struct bootmodule __init *add_boot_module(bootmodule_kind kind, in add_boot_module() argument 246 boot_module_kind_as_string(kind), start, start + size); in add_boot_module() 252 if ( mod->kind == kind && mod->start == start ) in add_boot_module() 261 mod->kind = kind; in add_boot_module() 282 if ( mod->kind == kind && !mod->domU ) in boot_module_find_by_kind() 301 cmd->kind = kind; in add_boot_cmdline() 327 if ( cmd->kind == kind && !cmd->domU ) in boot_cmdline_find_by_kind() 358 if ( mod->kind == kind && mod->start == start ) in boot_module_find_by_addr_and_kind() 364 const char * __init boot_module_kind_as_string(bootmodule_kind kind) in boot_module_kind_as_string() argument 366 switch ( kind ) in boot_module_kind_as_string() [all …]
|
A D | mem_access.c | 332 if ( npfec.kind == npfec_kind_with_gla ) in p2m_mem_access_check() 334 else if ( npfec.kind == npfec_kind_in_gpt ) in p2m_mem_access_check()
|
/xen/tools/libxl/ |
A D | libxl_checkpoint_device.c | 37 libxl__device_kind kind, in checkpoint_device_init() argument 45 dev->kind = kind; in checkpoint_device_init() 139 if (dev->kind == LIBXL__DEVICE_KIND_VIF) { in device_setup_iterate() 143 } else if (dev->kind == LIBXL__DEVICE_KIND_VBD) { in device_setup_iterate() 149 libxl__device_kind_to_string(dev->kind)); in device_setup_iterate() 155 libxl__device_kind_to_string(dev->kind), in device_setup_iterate() 160 } while (dev->ops->kind != dev->kind); in device_setup_iterate()
|
A D | libxl_nonetbuffer.c | 44 .kind = LIBXL__DEVICE_KIND_VIF,
|
A D | libxl_device.c | 28 libxl__device_kind_to_string(device->kind)); in libxl__device_frontend_path() 30 if (device->kind == LIBXL__DEVICE_KIND_VUART) in libxl__device_frontend_path() 32 libxl__device_kind_to_string(device->kind), in libxl__device_frontend_path() 36 libxl__device_kind_to_string(device->kind), in libxl__device_frontend_path() 74 libxl__device_kind_to_string(device->kind), in libxl__device_libxl_path() 209 (device->kind == LIBXL__DEVICE_KIND_VUART)) in libxl__device_generic_add() 794 libxl__device_kind kind; in libxl__devices_destroy() local 809 if (libxl__device_kind_from_string(kinds[i], &kind)) in libxl__devices_destroy() 823 dev->kind = kind; in libxl__devices_destroy() 838 if (dev->kind == LIBXL__DEVICE_KIND_VUSB) in libxl__devices_destroy() [all …]
|
A D | libxl_colo_qdisk.c | 206 .kind = LIBXL__DEVICE_KIND_VBD, 227 .kind = LIBXL__DEVICE_KIND_VBD,
|
A D | idl.py | 204 def __init__(self, kind, typename, fields, **kwargs): argument 215 self.kind = kind
|
A D | libxl_colo_nic.c | 289 .kind = LIBXL__DEVICE_KIND_VIF, 313 .kind = LIBXL__DEVICE_KIND_VIF,
|
A D | libxl_vnuma.c | 47 const char *kind) in check_vnuma_affinity() argument 68 LOG(WARN, "Vcpu %d %s affinity and vnuma info mismatch", vcpu, kind); in check_vnuma_affinity()
|
/xen/xen/arch/x86/hvm/ |
A D | save.c | 91 int kind; member 99 size_t size, int kind) in hvm_register_savevm() argument 108 hvm_sr_handlers[typecode].kind = kind; in hvm_register_savevm() 122 if ( hvm_sr_handlers[i].kind == HVMSR_PER_VCPU ) in hvm_save_size() 149 if ( hvm_sr_handlers[typecode].kind != HVMSR_PER_VCPU ) in hvm_save_one() 160 if ( hvm_sr_handlers[typecode].kind == HVMSR_PER_VCPU ) in hvm_save_one() 168 else if ( (rv = hvm_sr_handlers[typecode].kind == HVMSR_PER_VCPU ? in hvm_save_one() 197 if ( hvm_sr_handlers[typecode].kind == HVMSR_PER_VCPU ) in hvm_save_one() 243 if ( hvm_sr_handlers[i].kind == HVMSR_PER_VCPU ) in hvm_save()
|
A D | vm_event.c | 74 enum emul_kind kind = EMUL_KIND_NORMAL; in hvm_vm_event_do_resume() local 82 kind = EMUL_KIND_SET_CONTEXT_DATA; in hvm_vm_event_do_resume() 85 kind = EMUL_KIND_NOWRITE; in hvm_vm_event_do_resume() 88 kind = EMUL_KIND_SET_CONTEXT_INSN; in hvm_vm_event_do_resume() 90 hvm_emulate_one_vm_event(kind, TRAP_invalid_op, in hvm_vm_event_do_resume()
|
A D | monitor.c | 233 uint16_t kind) in hvm_monitor_check_p2m() argument 287 if ( kind == npfec_kind_with_gla ) in hvm_monitor_check_p2m() 290 else if ( kind == npfec_kind_in_gpt ) in hvm_monitor_check_p2m()
|
/xen/xen/include/asm-x86/hvm/ |
A D | monitor.h | 53 uint16_t kind);
|
A D | emulate.h | 69 void hvm_emulate_one_vm_event(enum emul_kind kind,
|
A D | save.h | 109 size_t size, int kind);
|
/xen/xen/common/sched/ |
A D | private.h | 209 #define sched_lock(kind, param, cpu, irq, arg...) \ argument 210 static inline spinlock_t *kind##_schedule_lock##irq(param EXTRA_TYPE(arg)) \ 230 #define sched_unlock(kind, param, cpu, irq, arg...) \ argument 231 static inline void kind##_schedule_unlock##irq(spinlock_t *lock \
|
/xen/xen/common/ubsan/ |
A D | ubsan.h | 89 unsigned char kind; member
|
A D | ubsan.c | 532 switch (data->kind) { in __ubsan_handle_invalid_builtin() 540 pr_err("Unknown kind %u\n", data->kind); in __ubsan_handle_invalid_builtin()
|
/xen/docs/ |
A D | index.rst | 48 kind of development environment.
|
/xen/xen/common/ |
A D | grant_table.c | 951 unsigned int kind = 0; in mapkind() local 977 return kind; in mapkind() 1212 unsigned int kind; in map_grant_ref() local 1220 kind = mapkind(lgt, rd, mfn); in map_grant_ref() 1222 !(kind & MAPKIND_WRITE) ) in map_grant_ref() 1224 else if ( !kind ) in map_grant_ref() 1225 kind = IOMMUF_readable; in map_grant_ref() 1227 kind = 0; in map_grant_ref() 1228 if ( kind && iommu_legacy_map(ld, _dfn(mfn_x(mfn)), mfn, 0, kind) ) in map_grant_ref() 1475 unsigned int kind; in unmap_common() local [all …]
|
/xen/tools/tests/vhpet/ |
A D | main.c | 88 int kind; member 169 size_t size, int kind) in hvm_register_savevm() argument 175 hvm_sr_handlers[typecode].kind = kind; in hvm_register_savevm()
|
/xen/xen/arch/x86/mm/ |
A D | mem_access.c | 220 npfec.kind == npfec_kind_in_gpt ) in p2m_mem_access_check() 245 switch ( npfec.kind ) in p2m_mem_access_check()
|