/xen/xen/common/compat/ |
A D | xlat.c | 12 void xlat_start_info(struct start_info *native, in xlat_start_info() argument 15 struct compat_start_info *compat = (void *)native; in xlat_start_info() 17 BUILD_BUG_ON(sizeof(*native) < sizeof(*compat)); in xlat_start_info() 18 XLAT_start_info(compat, native); in xlat_start_info() 21 void xlat_vcpu_runstate_info(struct vcpu_runstate_info *native) in xlat_vcpu_runstate_info() argument 23 struct compat_vcpu_runstate_info *compat = (void *)native; in xlat_vcpu_runstate_info() 25 BUILD_BUG_ON(sizeof(*native) < sizeof(*compat)); in xlat_vcpu_runstate_info() 26 XLAT_vcpu_runstate_info(compat, native); in xlat_vcpu_runstate_info()
|
/xen/xen/include/asm-x86/ |
A D | shared.h | 5 (u32 *)&(d)->shared_info->native.arch.nmi_reason : \ 12 d->shared_info->native.arch.field : \ 19 d->shared_info->native.arch.field = val; \ 28 v->vcpu_info->native.arch.field : \ 35 v->vcpu_info->native.arch.field = val; \
|
A D | hypercall.h | 19 hypercall_fn_t *native, *compat; member 23 uint8_t native, compat; member
|
/xen/xen/include/xen/ |
A D | shared.h | 9 struct shared_info native; member 20 (typeof(&(s)->compat.field))&(s)->native.field : \ 24 struct vcpu_info native; member 31 (typeof(&(i)->compat.field))&(i)->native.field : \
|
A D | sched.h | 175 # define runstate_guest(v) ((v)->runstate_guest.native) 177 XEN_GUEST_HANDLE(vcpu_runstate_info_t) native;
|
/xen/xen/common/sched/ |
A D | compat.c | 27 struct sched_poll native; in compat_poll() local 31 XLAT_sched_poll(&native, compat); in compat_poll() 34 return do_poll(&native); in compat_poll()
|
/xen/xen/arch/x86/ |
A D | compat.c | 21 (void *)pv_hypercall_table[__HYPERVISOR_physdev_op].native; in do_physdev_op_compat() 36 (void *)pv_hypercall_table[__HYPERVISOR_sched_op].native; in do_sched_op_compat() 61 (void *)pv_hypercall_table[__HYPERVISOR_event_channel_op].native; in do_event_channel_op_compat()
|
/xen/xen/arch/x86/pv/ |
A D | hypercall.c | 119 if ( !pv_hypercall_table[eax].native ) in pv_hypercall() 138 switch ( hypercall_args_table[eax].native ) in pv_hypercall() 155 regs->rax = pv_hypercall_table[eax].native(rdi, rsi, rdx, r10, r8, r9); in pv_hypercall() 161 switch ( hypercall_args_table[eax].native ) in pv_hypercall() 245 pv_hypercall_table[op].native ) in arch_do_multicall_call() 246 call->result = pv_hypercall_table[op].native( in arch_do_multicall_call()
|
A D | shim.c | 257 rw_pv_hypercall_table[__HYPERVISOR_event_channel_op].native = in pv_shim_setup_dom() 261 rw_pv_hypercall_table[__HYPERVISOR_grant_table_op].native = in pv_shim_setup_dom()
|
/xen/xen/arch/x86/hvm/ |
A D | hypercall.c | 220 if ( !hvm_hypercall_table[eax].native ) in hvm_hypercall() 248 switch ( hypercall_args_table[eax].native ) in hvm_hypercall() 259 regs->rax = hvm_hypercall_table[eax].native(rdi, rsi, rdx, r10, r8, in hvm_hypercall() 266 switch ( hypercall_args_table[eax].native ) in hvm_hypercall()
|
/xen/tools/ocaml/ |
A D | Makefile.rules | 54 mk-caml-lib-native = $(call quiet-command, $(OCAMLOPT) $(OCAMLOPTFLAGS) -a -o $1 $2 $3,MLA,$1) 64 …$(call mk-caml-lib-native,$$@, -cclib -l$(1)_stubs $(foreach lib,$(LIBS_$(1)),-cclib $(lib)), $(fo… 75 $(call mk-caml-lib-native,$$@, , $(foreach obj,$($(1)_OBJS),$(obj).cmx))
|
/xen/tools/ocaml/libs/mmap/ |
A D | META.in | 4 archive(native) = "xenmmap.cmxa"
|
/xen/tools/ocaml/libs/xentoollog/ |
A D | META.in | 4 archive(native) = "xentoollog.cmxa"
|
/xen/tools/ocaml/libs/eventchn/ |
A D | META.in | 5 archive(native) = "xeneventchn.cmxa"
|
/xen/tools/ocaml/libs/xb/ |
A D | META.in | 5 archive(native) = "xenbus.cmxa"
|
/xen/tools/ocaml/libs/xs/ |
A D | META.in | 5 archive(native) = "xenstore.cmxa"
|
/xen/tools/ocaml/libs/xl/ |
A D | META.in | 5 archive(native) = "xenlight.cmxa"
|
/xen/tools/ocaml/libs/xc/ |
A D | META.in | 5 archive(native) = "xenctrl.cmxa"
|
/xen/docs/misc/ |
A D | pvh.pandoc | 4 native entry point, a `ELFNOTE` is used in order to tell the domain 80 Interrupts from physical devices are delivered using native methods, this is 85 are available on native hardware.
|
/xen/xen/common/ |
A D | time.c | 113 d->shared_info->native.wc_sec_hi = sec >> 32; in update_domain_wallclock_time()
|
A D | xenoprof.c | 44 struct xenoprof_buf native; member 48 ? &(b)->native.field \
|
/xen/docs/features/ |
A D | dom0less.pandoc | 105 - The GIC version is the native version. In absence of other 107 boot is the same as the native GIC version.
|
/xen/docs/misc/arm/device-tree/ |
A D | booting.txt | 119 line by writing bootargs (as for native Linux). 121 for Dom0 and bootargs for native Linux.
|
/xen/docs/hypervisor-guide/x86/ |
A D | how-xen-boots.rst | 18 * For EFI, Xen supports Multiboot 2 with EFI extensions, and native EFI64.
|
/xen/docs/man/ |
A D | xen-tscmode.7.pod | 52 Roughly speaking, native means rdtsc is fast but TSC-sensitive apps 56 all rdtsc instructions were native: "fast but potentially incorrect." 209 however, there are two possibilities: TSC remains native IF the source
|