/xen-4.10.0-shim-comet/xen/arch/arm/arm64/ |
A D | vsysreg.c | 42 if ( hsr.sysreg.read ) in do_sysreg() 52 return handle_ro_raz(regs, regidx, hsr.sysreg.read, hsr, 1); in do_sysreg() 64 return handle_wo_wi(regs, regidx, hsr.sysreg.read, hsr, 1); in do_sysreg() 66 return handle_raz_wi(regs, regidx, hsr.sysreg.read, hsr, 1); in do_sysreg() 86 return handle_raz_wi(regs, regidx, hsr.sysreg.read, hsr, 1); in do_sysreg() 92 return handle_ro_raz(regs, regidx, hsr.sysreg.read, hsr, 0); in do_sysreg() 97 return handle_raz_wi(regs, regidx, hsr.sysreg.read, hsr, 1); in do_sysreg() 121 return handle_raz_wi(regs, regidx, hsr.sysreg.read, hsr, 1); in do_sysreg() 144 return handle_raz_wi(regs, regidx, hsr.sysreg.read, hsr, 1); in do_sysreg() 206 sysreg.read ? "mrs" : "msr", in do_sysreg() [all …]
|
/xen-4.10.0-shim-comet/tools/libvchan/ |
A D | init.c | 77 int pages_left = ctrl->read.order >= PAGE_SHIFT ? 1 << (ctrl->read.order - PAGE_SHIFT) : 0; in init_gnt_srv() 92 ctrl->read.shr = &ctrl->ring->left; in init_gnt_srv() 100 switch (ctrl->read.order) { in init_gnt_srv() 110 if (!ctrl->read.buffer) in init_gnt_srv() 156 ctrl->read.shr = &ctrl->ring->right; in init_gnt_cli() 159 if (ctrl->read.order < SMALL_RING_SHIFT || ctrl->read.order > MAX_RING_SHIFT) in init_gnt_cli() 161 if (ctrl->read.order == ctrl->write.order && ctrl->read.order < PAGE_SHIFT) in init_gnt_cli() 184 switch (ctrl->read.order) { in init_gnt_cli() 196 if (!ctrl->read.buffer) in init_gnt_cli() 321 ctrl->read.order = SMALL_RING_SHIFT; in libxenvchan_server_init() [all …]
|
A D | io.c | 54 return ctrl->read.shr->prod; in rd_prod() 59 return &ctrl->read.shr->cons; in _rd_cons() 76 return ctrl->read.buffer; in rd_ring() 91 return (1 << ctrl->read.order); in rd_ring_size() 362 if (ctrl->read.order >= PAGE_SHIFT) in libxenvchan_close() 363 munmap(ctrl->read.buffer, 1 << ctrl->read.order); in libxenvchan_close()
|
/xen-4.10.0-shim-comet/xen/include/asm-arm/ |
A D | vreg.h | 24 if ( !cp32.read ) in vreg_emulate_cp32() 27 ret = fn(regs, &r, cp32.read); in vreg_emulate_cp32() 29 if ( ret && cp32.read ) in vreg_emulate_cp32() 47 if ( !cp64.read ) in vreg_emulate_cp64() 55 ret = fn(regs, &x, cp64.read); in vreg_emulate_cp64() 57 if ( ret && cp64.read ) in vreg_emulate_cp64() 74 if ( !sysreg.read ) in vreg_emulate_sysreg32() 77 ret = fn(regs, &r, sysreg.read); in vreg_emulate_sysreg32() 79 if ( ret && sysreg.read ) in vreg_emulate_sysreg32() 97 if ( !sysreg.read ) in vreg_emulate_sysreg64() [all …]
|
A D | traps.h | 19 void handle_raz_wi(struct cpu_user_regs *regs, int regidx, bool read, 23 void handle_wo_wi(struct cpu_user_regs *regs, int regidx, bool read, 27 void handle_ro_raz(struct cpu_user_regs *regs, int regidx, bool read,
|
/xen-4.10.0-shim-comet/xen/arch/arm/ |
A D | vcpreg.c | 62 if ( cp32.read ) in do_cp15_32() 101 return handle_raz_wi(regs, regidx, cp32.read, hsr, 1); in do_cp15_32() 118 return handle_raz_wi(regs, regidx, cp32.read, hsr, 1); in do_cp15_32() 152 cp32.read ? "mrc" : "mcr", in do_cp15_32() 218 cp64.read ? "mrrc" : "mcrr", in do_cp15_64() 254 return handle_wo_wi(regs, regidx, cp32.read, hsr, 1); in do_cp14_32() 256 return handle_raz_wi(regs, regidx, cp32.read, hsr, 1); in do_cp14_32() 288 if ( !cp32.read ) in do_cp14_32() 349 cp32.read ? "mrc" : "mcr", in do_cp14_32() 391 cp64.read ? "mrrc" : "mcrr", in do_cp14_64() [all …]
|
A D | vtimer.c | 170 static bool vtimer_cntp_ctl(struct cpu_user_regs *regs, uint32_t *r, bool read) in vtimer_cntp_ctl() argument 177 if ( read ) in vtimer_cntp_ctl() 200 bool read) in vtimer_cntp_tval() argument 210 if ( read ) in vtimer_cntp_tval() 229 bool read) in vtimer_cntp_cval() argument 236 if ( read ) in vtimer_cntp_cval() 258 if ( cp32.read ) in vtimer_emulate_cp32() 280 if ( cp64.read ) in vtimer_emulate_cp64() 300 if ( sysreg.read ) in vtimer_emulate_sysreg()
|
/xen-4.10.0-shim-comet/tools/python/xen/migration/ |
A D | verify.py | 21 def __init__(self, info, read): argument 24 self.read = read 28 _ = self.read(nr_bytes)
|
A D | libxl.py | 75 def __init__(self, info, read): argument 76 VerifyBase.__init__(self, info, read) 157 VerifyLibxc(self.info, self.read).verify()
|
/xen-4.10.0-shim-comet/tools/xentrace/ |
A D | xentrace_format | 125 line = sys.stdin.read(struct.calcsize(HDRREC)) 143 line = sys.stdin.read(struct.calcsize(TSCREC)) 149 line = sys.stdin.read(struct.calcsize(D1REC)) 154 line = sys.stdin.read(struct.calcsize(D2REC)) 159 line = sys.stdin.read(struct.calcsize(D3REC)) 164 line = sys.stdin.read(struct.calcsize(D4REC)) 169 line = sys.stdin.read(struct.calcsize(D5REC)) 174 line = sys.stdin.read(struct.calcsize(D6REC)) 179 line = sys.stdin.read(struct.calcsize(D7REC))
|
/xen-4.10.0-shim-comet/tools/ocaml/xenstored/ |
A D | select.ml | 16 (* The [read], [write], [except] are fields mapped to the POLLIN/OUT/PRI 20 mutable read: bool; RecordField 29 which we can read from /proc/sys. *) 37 let init_event () = {read = false; write = false; except = false} 48 List.iter (add_event (fun x -> x.read <- true)) in_fds; 61 (if event.read then fd :: r else r),
|
/xen-4.10.0-shim-comet/docs/man/ |
A D | xenstore-chmod.pod.1 | 22 read 30 read and write (both) 40 subsequent entries. The key owner always has full access (read,
|
A D | xenstore-ls.pod.1 | 32 read 40 read and write (both) 50 subsequent entries. The key owner always has full access (read,
|
/xen-4.10.0-shim-comet/tools/ocaml/libs/xs/ |
A D | xst.ml | 20 read: string -> string; RecordField 33 read = (fun path -> Xsraw.read tid path xsh);
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | vm_event.c | 200 v->arch.vm_event->emul.read = rsp->data.emul.read; in vm_event_emulate_check() 216 v->arch.vm_event->emul.read = rsp->data.emul.read; in vm_event_emulate_check()
|
/xen-4.10.0-shim-comet/tools/firmware/vgabios/ |
A D | vbe_display_api.txt | 128 Next, the parameter value can be read or written. 142 This parameter can be used to read/write the vbe display X resolution (in pixels). 150 This parameter can be used to read/write the vbe display Y resolution (in pixels). 158 This parameter can be used to read/write the vbe display BPP. 166 This parameter can be used to read/write the vbe ENABLED state. 174 This parameter can be used to read/write the current selected BANK (at 0xA0000). 179 This parameter can be used to read/write the current virtual width. 185 This parameter can be read in order to obtain the current virtual height.
|
/xen-4.10.0-shim-comet/xen/arch/x86/efi/ |
A D | mkreloc.c | 94 read(in, &mz_hdr, sizeof(mz_hdr)) != sizeof(mz_hdr) ) in load() 108 read(in, &pe_hdr, sizeof(pe_hdr)) != sizeof(pe_hdr) || in load() 109 read(in, &base, sizeof(base)) != sizeof(base) || in load() 115 read(in, image_size, sizeof(*image_size)) != sizeof(*image_size) ) in load() 147 read(in, *sections, pe_hdr.section_count * sizeof(**sections)) != in load()
|
/xen-4.10.0-shim-comet/tools/misc/ |
A D | xencov_split | 22 s = f.read(4) 29 content = f.read()
|
/xen-4.10.0-shim-comet/tools/ocaml/libs/mmap/ |
A D | xenmmap.ml | 26 (* read: interface -> start -> length -> data *) 27 external read: mmap_interface -> int -> int -> string = "stub_mmap_read"
|
/xen-4.10.0-shim-comet/tools/hotplug/Linux/ |
A D | xen-hotplug-common.sh.in | 64 local v=$(xenstore-read "$@" || true) 65 [ "$v" != "" ] || fatal "xenstore-read $@ failed." 77 xenstore-read "$1" 2>/dev/null || echo "$2"
|
/xen-4.10.0-shim-comet/tools/xenstore/ |
A D | xenstored_core.h | 110 connreadfn_t *read; member 162 struct connection *new_connection(connwritefn_t *write, connreadfn_t *read);
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/ |
A D | intercept.c | 57 return handler->mmio.ops->read(current, addr, size, data); in hvm_mmio_read() 70 .read = hvm_mmio_read, 111 .read = hvm_portio_read, 131 rc = ops->read(handler, addr, p->size, &data); in hvm_process_io_intercept()
|
/xen-4.10.0-shim-comet/tools/libs/evtchn/ |
A D | minios.c | 133 files[fd].read = 1; in evtchn_handler() 241 files[fd].read = 0; in xenevtchn_pending() 249 files[fd].read = 1; in xenevtchn_pending()
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/hvm/ |
A D | io.h | 42 hvm_mmio_read_t read; member 93 hvm_io_read_t read; member
|
/xen-4.10.0-shim-comet/xen/xsm/flask/ |
A D | gen-policy.py | 14 for char in sys.stdin.read():
|