| /xen/xen/tools/ |
| A D | compat-xlat-header.py | 25 fields = [] 54 fields = [] 83 if len(fields) > 0 and fields[0] == '': 169 if len(fields) > 0 and fields[0] == '': 173 if len(fields) > 0 and fields[0] == '': 227 fields = [] 267 if len(fields) > 0 and fields[0] == '': 276 if len(fields) > 0 and fields[0] == '': 337 if len(fields) > 0 and fields[0] == '': 348 fields = [] [all …]
|
| /xen/xen/arch/x86/hvm/ |
| A D | vioapic.c | 247 unmasked = ent.fields.mask; in vioapic_write_redirent() 250 ent.fields.delivery_status = 0; in vioapic_write_redirent() 251 ent.fields.remote_irr = pent->fields.remote_irr; in vioapic_write_redirent() 262 pent->fields.remote_irr = 0; in vioapic_write_redirent() 263 else if ( !ent.fields.mask && in vioapic_write_redirent() 264 !ent.fields.remote_irr && in vioapic_write_redirent() 269 pent->fields.remote_irr = 1; in vioapic_write_redirent() 508 if ( ent->fields.mask ) in vioapic_irq_positive_edge() 515 else if ( !ent->fields.remote_irr ) in vioapic_irq_positive_edge() 517 ent->fields.remote_irr = 1; in vioapic_irq_positive_edge() [all …]
|
| /xen/tools/xentop/ |
| A D | xentop.c | 175 field fields[] = { variable 897 fields[FIELD_NET_TX-1].default_width = 8; in reset_field_widths() 898 fields[FIELD_NET_RX-1].default_width = 8; in reset_field_widths() 899 fields[FIELD_VBD_RD-1].default_width = 8; in reset_field_widths() 900 fields[FIELD_VBD_WR-1].default_width = 8; in reset_field_widths() 901 fields[FIELD_VBD_RSECT-1].default_width = 10; in reset_field_widths() 902 fields[FIELD_VBD_WSECT-1].default_width = 10; in reset_field_widths() 914 fields[FIELD_NAME-1].default_width = length; in adjust_field_widths() 919 fields[FIELD_NET_TX-1].default_width = length; in adjust_field_widths() 1009 print("%*s", fields[i].default_width, fields[i].header); in do_header() [all …]
|
| /xen/xen/arch/x86/ |
| A D | extable.c | 134 .fields.ec = regs->error_code, in search_exception_table() 135 .fields.trapnr = regs->entry_vector, in search_exception_table() 160 .res.fields.trapnr = X86_EXC_UD }, in stub_selftest() 163 .res.fields.trapnr = X86_EXC_GP }, in stub_selftest() 166 .res.fields.trapnr = X86_EXC_SS }, in stub_selftest() 168 .res.fields.trapnr = X86_EXC_BP }, in stub_selftest() 204 vector_name(tests[i].res.fields.trapnr), tests[i].res.fields.ec, in stub_selftest() 205 vector_name(res.fields.trapnr), res.fields.ec); in stub_selftest()
|
| /xen/tools/libs/light/ |
| A D | idl.py | 204 def __init__(self, kind, typename, fields, **kwargs): argument 217 self.fields = [] 218 for f in fields: 229 self.fields.append(Field(t,n,**kw)) 250 def __init__(self, name, fields, **kwargs): argument 252 Aggregate.__init__(self, "struct", name, fields, **kwargs) 255 return len(self.fields) != 0 258 def __init__(self, name, fields, **kwargs): argument 264 Aggregate.__init__(self, "union", name, fields, **kwargs) 278 for f in fields: [all …]
|
| A D | gentypes.py | 49 for f in ty.fields: 71 for f in ty.fields: 94 for f in [f for f in ty.fields if not f.const]: 116 for f in ty.fields: 188 for f in ty.fields: 201 for f in [f for f in ty.fields if not f.const]: 263 for x in f.type.fields: 286 for f in [f for f in field.type.fields if not f.const]: 384 for f in ty.fields: 495 for f in ty.fields: [all …]
|
| A D | idl.txt | 33 functions. Valid values for this fields are: 49 The name of the C function which will deep copy all fields within 151 The contained types are available in the list Aggregate.fields. Each 159 fields).
|
| A D | gentest.py | 50 for f in ty.fields: 59 for f in [f for f in ty.fields if not f.const]:
|
| /xen/xen/arch/x86/hvm/svm/ |
| A D | intr.c | 87 if ( intr.fields.irq ) in svm_enable_intr_window() 116 intr.fields.irq = 1; in svm_enable_intr_window() 117 intr.fields.vector = 0; in svm_enable_intr_window() 118 intr.fields.prio = intack.vector >> 4; in svm_enable_intr_window() 119 intr.fields.ign_tpr = (intack.source != hvm_intsrc_lapic); in svm_enable_intr_window()
|
| A D | nestedsvm.c | 710 svm->ns_hostflags.fields.vintrmask = !!ns_vmcb->_vintr.fields.intr_masking; in nsvm_vcpu_vmentry() 796 if ( vmcb->_vintr.fields.vgif_enable ) in nsvm_vcpu_vmexit_inject() 891 port = ioinfo.fields.port; in nsvm_vmcb_guest_intercepts_ioio() 892 size = ioinfo.fields.sz32 ? 4 : ioinfo.fields.sz16 ? 2 : 1; in nsvm_vmcb_guest_intercepts_ioio() 1275 if ( vmcb->_vintr.fields.vgif_enable ) in nestedsvm_vmexit_defer() 1276 vmcb->_vintr.fields.vgif = 0; in nestedsvm_vmexit_defer() 1548 if ( vmcb->_vintr.fields.vgif_enable ) in nestedsvm_gif_isset() 1549 return vmcb->_vintr.fields.vgif; in nestedsvm_gif_isset() 1596 intr.fields.irq = 0; in svm_vmexit_do_clgi() 1637 vintr.fields.vgif_enable = 1; in svm_nested_features_on_efer_update() [all …]
|
| /xen/tools/golang/xenlight/ |
| A D | gengotypes.py | 116 for f in ty.fields: 172 for f in ty.fields: 263 for f in ty.fields: 273 for nf in f.type.fields: 354 for f in ty.fields: 378 for nf in f.type.fields: 471 for f in ty.fields: 480 for nf in f.type.fields: 565 for f in ty.fields: 585 for uf in f.type.fields: [all …]
|
| /xen/docs/misc/ |
| A D | pvcalls.pandoc | 378 fields follow. 390 Request fields: 393 - additional fields: 454 Request fields: 457 - additional fields: 508 Request fields: 511 - additional fields: 554 Request fields: 595 Reuqest fields: 665 Request fields: [all …]
|
| /xen/docs/specs/ |
| A D | libxc-migration-stream.pandoc | 21 * Dependant on toolstack word size. A number of fields within the 74 All the fields within the headers and records have a fixed width. 78 Padding and reserved fields are set to zero on save and must be 81 Integer (numeric) fields in the image header are always in big-endian 84 Integer fields in the domain header and in the records are in the 269 The end record contains no fields; its body_length is 0. 581 The verify record contains no fields; its body_length is 0. 594 The checkpoint record contains no fields; its body_length is 0 639 The end record contains no fields; its body_length is 0. 803 fields. In particular, the `marker`, `id` and `version` fields must
|
| A D | libxl-migration-stream.pandoc | 64 All fields in this header shall be in _big-endian_ byte order, regardless of 183 The end record contains no fields; its body_length is 0. 195 The libxc context record contains no fields; its body_length is 0[^1]. 253 The end record contains no fields; its body_length is 0.
|
| /xen/xen/arch/x86/include/asm/hvm/svm/ |
| A D | nestedsvm.h | 65 } fields; member
|
| A D | vmcb.h | 350 } fields; member 367 } fields; member 377 } fields; member
|
| /xen/ |
| A D | CREDITS | 4 scripts. The fields are: name (N), email (E), web-address
|
| /xen/docs/designs/ |
| A D | xenstore-migration.md | 28 All fields in this header must be in _big-endian_ byte order, regardless of 47 | | 0x00000001: all fields and records without any | 50 | | 0x00000002: all fields and records valid for | 51 | | version 1 plus fields and records | 75 NOTE: padding octets or fields not valid in the used version here and in all 116 The end record contains no fields; its body length is 0.
|
| /xen/xen/arch/x86/hvm/vmx/ |
| A D | vvmx.c | 406 if ( info.fields.memreg ) { in decode_vmx_inst() 408 decode->reg1 = info.fields.reg1; in decode_vmx_inst() 418 if ( info.fields.segment > x86_seg_gs ) in decode_vmx_inst() 420 hvm_get_segment_register(v, info.fields.segment, &seg); in decode_vmx_inst() 423 base = info.fields.base_reg_invalid ? 0 : in decode_vmx_inst() 424 reg_read(regs, info.fields.base_reg); in decode_vmx_inst() 426 index = info.fields.index_reg_invalid ? 0 : in decode_vmx_inst() 427 reg_read(regs, info.fields.index_reg); in decode_vmx_inst() 429 scale = 1 << info.fields.scaling; in decode_vmx_inst() 433 size = 1 << (info.fields.addr_size + 1); in decode_vmx_inst() [all …]
|
| /xen/stubdom/ |
| A D | vtpm-microsecond-duration.patch | 6 The timeout and duration fields should be in microseconds according to
|
| /xen/xen/arch/x86/include/asm/hvm/vmx/ |
| A D | vvmx.h | 72 } fields; member
|
| /xen/docs/misra/ |
| A D | exclude-list.rst | 37 Here is an explanation of the fields inside an object of the "content" array:
|
| A D | function-macro-properties.rst | 29 Here is an explanation of the fields inside an object of the "content" array:
|
| A D | documenting-violations.rst | 44 one has a different justification schema which shares some fields. 74 Here is an explanation of the fields inside an object of the "content" array: 117 Here is an explanation of the fields inside an object of the "content" array:
|
| /xen/tools/ocaml/xenstored/ |
| A D | poll.ml | 16 (* The [read], [write], [except] are fields mapped to the POLLIN/OUT/PRI
|