Searched refs:typecode (Results 1 – 11 of 11) sorted by relevance
/xen/xen/arch/x86/hvm/ |
A D | save.c | 101 ASSERT(typecode <= HVM_SAVE_CODE_MAX); in hvm_register_savevm() 106 hvm_sr_handlers[typecode].name = name; in hvm_register_savevm() 107 hvm_sr_handlers[typecode].size = size; in hvm_register_savevm() 108 hvm_sr_handlers[typecode].kind = kind; in hvm_register_savevm() 144 typecode > HVM_SAVE_CODE_MAX || in hvm_save_one() 146 !hvm_sr_handlers[typecode].save ) in hvm_save_one() 155 ctxt.size = hvm_sr_handlers[typecode].size; in hvm_save_one() 167 d->domain_id, typecode, rv); in hvm_save_one() 323 if ( desc->typecode == 0 ) in hvm_load() 363 d->typecode = tc; in _hvm_init_entry() [all …]
|
/xen/tools/misc/ |
A D | xen-hvmcrash.c | 116 if (descriptor->typecode == HVM_SAVE_CODE(CPU)) { in main() 123 } else if (descriptor->typecode == HVM_SAVE_CODE(END)) { in main()
|
A D | xen-hvmctx.c | 440 entry++, (unsigned) desc.typecode, in main() 442 switch (desc.typecode) in main() 465 (unsigned) desc.typecode); in main() 468 } while ( desc.typecode != HVM_SAVE_CODE(END) && off < len ); in main()
|
/xen/tools/tests/vhpet/ |
A D | main.c | 165 void __init hvm_register_savevm(uint16_t typecode, in hvm_register_savevm() argument 171 hvm_sr_handlers[typecode].save = save_state; in hvm_register_savevm() 172 hvm_sr_handlers[typecode].load = load_state; in hvm_register_savevm() 173 hvm_sr_handlers[typecode].name = name; in hvm_register_savevm() 174 hvm_sr_handlers[typecode].size = size; in hvm_register_savevm() 175 hvm_sr_handlers[typecode].kind = kind; in hvm_register_savevm() 178 int do_save(uint16_t typecode, struct domain *d, hvm_domain_context_t *h) in do_save() argument 180 return hvm_sr_handlers[typecode].save(d, h); in do_save() 183 int do_load(uint16_t typecode, struct domain *d, hvm_domain_context_t *h) in do_load() argument 195 ret = hvm_sr_handlers[typecode].load(d, h); in do_load()
|
A D | emul.h | 303 uint16_t typecode; /* Used to demux the various types below */ member 308 void hvm_register_savevm(uint16_t typecode,
|
/xen/xen/include/asm-x86/hvm/ |
A D | save.h | 105 void hvm_register_savevm(uint16_t typecode, 135 int hvm_save_one(struct domain *d, unsigned int typecode, unsigned int instance,
|
/xen/xen/include/public/hvm/ |
A D | save.h | 50 uint16_t typecode; /* Used to demux the various types below */ member
|
/xen/tools/debugger/kdd/ |
A D | kdd-xen.c | 152 if (desc->typecode == HVM_SAVE_CODE(CPU)) { in kdd_count_cpus() 173 if (desc->typecode == HVM_SAVE_CODE(CPU) && desc->instance == cpuid) { in get_cpu() 197 if (desc->typecode == HVM_SAVE_CODE(LAPIC_REGS) && desc->instance == cpuid) { in get_lapic()
|
/xen/tools/libxc/ |
A D | xc_dom_x86.c | 983 header->typecode != HVM_SAVE_CODE(END); in hvm_get_save_record() 985 if ( header->typecode == type && header->instance == instance ) in hvm_get_save_record() 1049 bsp_ctx.cpu_d.typecode = HVM_SAVE_CODE(CPU); in vcpu_hvm() 1083 bsp_ctx.end_d.typecode = HVM_SAVE_CODE(END); in vcpu_hvm() 1100 .mtrr_d.typecode = HVM_SAVE_CODE(MTRR), in vcpu_hvm()
|
A D | xc_domain.c | 489 uint16_t typecode, in xc_domain_hvm_getcontext_partial() argument 503 domctl.u.hvmcontext_partial.type = typecode; in xc_domain_hvm_getcontext_partial()
|
/xen/tools/libxc/include/ |
A D | xenctrl.h | 851 uint16_t typecode,
|
Completed in 32 milliseconds