/xen-4.10.0-shim-comet/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()
|
A D | schedule.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-4.10.0-shim-comet/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 31 void pv_hypercall_table_replace(unsigned int hypercall, hypercall_fn_t * native,
|
/xen-4.10.0-shim-comet/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 | xenoprof.h | 38 struct xenoprof_buf native; member 68 &(b)->native.field : \
|
A D | sched.h | 168 # define runstate_guest(v) ((v)->runstate_guest.native) 170 XEN_GUEST_HANDLE(vcpu_runstate_info_t) native;
|
/xen-4.10.0-shim-comet/xen/arch/x86/pv/ |
A D | hypercall.c | 103 !pv_hypercall_table[eax].native ) in pv_hypercall() 122 switch ( hypercall_args_table[eax].native ) in pv_hypercall() 139 regs->rax = pv_hypercall_table[eax].native(rdi, rsi, rdx, r10, r8, r9); in pv_hypercall() 145 switch ( hypercall_args_table[eax].native ) in pv_hypercall() 229 pv_hypercall_table[op].native ) in arch_do_multicall_call() 230 call->result = pv_hypercall_table[op].native( in arch_do_multicall_call() 324 hypercall_fn_t * native, in pv_hypercall_table_replace() argument 329 write_atomic(HANDLER_POINTER(native), (unsigned long)native); in pv_hypercall_table_replace() 337 : pv_hypercall_table[hypercall].native; in pv_get_hypercall_handler()
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/ |
A D | hypercall.c | 180 !hvm_hypercall_table[eax].native ) in hvm_hypercall() 202 switch ( hypercall_args_table[eax].native ) in hvm_hypercall() 213 regs->rax = hvm_hypercall_table[eax].native(rdi, rsi, rdx, r10, r8, in hvm_hypercall() 220 switch ( hypercall_args_table[eax].native ) in hvm_hypercall()
|
/xen-4.10.0-shim-comet/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-4.10.0-shim-comet/tools/ocaml/libs/mmap/ |
A D | META.in | 4 archive(native) = "xenmmap.cmxa"
|
/xen-4.10.0-shim-comet/tools/ocaml/libs/xentoollog/ |
A D | META.in | 4 archive(native) = "xentoollog.cmxa"
|
/xen-4.10.0-shim-comet/tools/ocaml/libs/eventchn/ |
A D | META.in | 5 archive(native) = "xeneventchn.cmxa"
|
/xen-4.10.0-shim-comet/tools/ocaml/libs/xs/ |
A D | META.in | 5 archive(native) = "xenstore.cmxa"
|
/xen-4.10.0-shim-comet/tools/ocaml/libs/xb/ |
A D | META.in | 5 archive(native) = "xenbus.cmxa"
|
/xen-4.10.0-shim-comet/tools/ocaml/libs/xl/ |
A D | META.in | 5 archive(native) = "xenlight.cmxa"
|
/xen-4.10.0-shim-comet/tools/ocaml/libs/xc/ |
A D | META.in | 5 archive(native) = "xenctrl.cmxa"
|
/xen-4.10.0-shim-comet/docs/misc/ |
A D | pvh.markdown | 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.
|
A D | efi.markdown | 80 the native configuration.
|
/xen-4.10.0-shim-comet/unmodified_drivers/linux-2.6/ |
A D | README | 17 NB. This is your native kernel build tree (or a distro provided
|
/xen-4.10.0-shim-comet/xen/common/ |
A D | time.c | 113 d->shared_info->native.wc_sec_hi = sec >> 32; in update_domain_wallclock_time()
|
/xen-4.10.0-shim-comet/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-4.10.0-shim-comet/docs/man/ |
A D | xen-tscmode.pod.7 | 48 Roughly speaking, native means rdtsc is fast but TSC-sensitive apps 52 all rdtsc instructions were native: "fast but potentially incorrect." 207 however, there are two possibilities: TSC remains native IF the source 331 fast as a native rdtsc instruction, much faster than emulation,
|
A D | xen-vbd-interface.markdown.7 | 36 which case the guest is expected to treat it as they would a native
|
/xen-4.10.0-shim-comet/docs/specs/ |
A D | libxc-migration-stream.pandoc | 22 image are native types such as `unsigned long` which have different 86 native ordering).
|