Home
last modified time | relevance | path

Searched refs:cd (Results 1 – 22 of 22) sorted by relevance

/xen-4.10.0-shim-comet/xen/arch/x86/
A Dmicrocode.c105 struct cpio_data cd; in microcode_scan_module() local
137 cd.data = NULL; in microcode_scan_module()
138 cd.size = 0; in microcode_scan_module()
140 if ( cd.data ) in microcode_scan_module()
147 if ( cd.size > MAX_EARLY_CPIO_MICROCODE ) in microcode_scan_module()
150 i, cd.size, MAX_EARLY_CPIO_MICROCODE); in microcode_scan_module()
153 ucode_blob.size = cd.size; in microcode_scan_module()
154 ucode_blob.data = xmalloc_bytes(cd.size); in microcode_scan_module()
156 cd.data = NULL; in microcode_scan_module()
158 memcpy(ucode_blob.data, cd.data, cd.size); in microcode_scan_module()
[all …]
/xen-4.10.0-shim-comet/xen/common/
A Dearlycpio.c75 struct cpio_data cd = { NULL, 0, "" }; in find_cpio_data() local
138 strlcpy(cd.name, p + mypathsize, MAX_CPIO_FILE_NAME); in find_cpio_data()
140 cd.data = (void *)dptr; in find_cpio_data()
141 cd.size = ch[C_FILESIZE]; in find_cpio_data()
142 return cd; /* Found it! */ in find_cpio_data()
149 return cd; in find_cpio_data()
/xen-4.10.0-shim-comet/xen/arch/x86/mm/
A Dmem_sharing.c1380 struct domain *cd; in mem_sharing_memop() local
1395 rcu_unlock_domain(cd); in mem_sharing_memop()
1401 rcu_unlock_domain(cd); in mem_sharing_memop()
1443 rcu_unlock_domain(cd); in mem_sharing_memop()
1450 struct domain *cd; in mem_sharing_memop() local
1465 rcu_unlock_domain(cd); in mem_sharing_memop()
1471 rcu_unlock_domain(cd); in mem_sharing_memop()
1479 rcu_unlock_domain(cd); in mem_sharing_memop()
1490 rcu_unlock_domain(cd); in mem_sharing_memop()
1497 struct domain *cd; in mem_sharing_memop() local
[all …]
/xen-4.10.0-shim-comet/docs/process/
A Dbranching-checklist.txt13 cd ~/git/qemu-xen.git
16 cd ~/git/qemu-xen-traditional.git
21 cd ~/git/libvirt.git/
26 cd ~/git/xen.git
37 cd cronjobs
48 ### cd /var/www/git/
53 cd testing.git
59 cd testing.git
68 cd ~/HG/patchbot/
84 cd /var/xenbits-www/html
[all …]
A Drelease-checklist.txt100 cd /volatile/iwj/website-thing/xen.org
103 cd /volatile/iwj/d
105 cd build
108 cd xen-$v
116 cd oss-xen/release/$v
120 cd ../../..
125 cd /data/downloads.xenproject.org/xen.org
/xen-4.10.0-shim-comet/xen/drivers/char/
A Dconsole.c469 struct domain *cd = current->domain; in guest_console_write() local
483 if ( is_hardware_domain(cd) ) in guest_console_write()
525 spin_lock(&cd->pbuf_lock); in guest_console_write()
529 cd->pbuf[cd->pbuf_idx] = '\0'; in guest_console_write()
530 guest_printk(cd, XENLOG_G_DEBUG "%s%s\n", cd->pbuf, kbuf); in guest_console_write()
531 cd->pbuf_idx = 0; in guest_console_write()
536 memcpy(cd->pbuf + cd->pbuf_idx, kbuf, kcount); in guest_console_write()
537 cd->pbuf_idx += kcount; in guest_console_write()
541 cd->pbuf[cd->pbuf_idx] = '\0'; in guest_console_write()
542 guest_printk(cd, XENLOG_G_DEBUG "%s%s\n", cd->pbuf, kbuf); in guest_console_write()
[all …]
/xen-4.10.0-shim-comet/docs/misc/
A Dcoverage.markdown55 cd /root
60 cd ~
65 (cd / && xencov_split ~/coverage.dat)
69 cd ~/xen-unstable
A Dstubdom.txt83 cd stubdom/
88 cd stubdom/
A Damd-ucode-container.txt63 2. cd initrd-for-xen-with_append
A Dvtd.txt12 1 ) cd xen-unstable.hg
49 1 ) cd xen-unstable.hg
/xen-4.10.0-shim-comet/tools/blktap2/vhd/lib/
A Dlibvhd.c1295 iconv_t cd; in vhd_macx_encode_location() local
1326 if (iconv(cd, in vhd_macx_encode_location()
1358 iconv_t cd; in vhd_w2u_encode_location() local
1418 if (iconv(cd, in vhd_w2u_encode_location()
1452 iconv_t cd; in vhd_macx_decode_location() local
1465 if (iconv(cd, in vhd_macx_decode_location()
1472 iconv_close(cd); in vhd_macx_decode_location()
1486 iconv_t cd; in vhd_w2u_decode_location() local
1499 if (iconv(cd, in vhd_w2u_decode_location()
2458 iconv_t cd; in vhd_initialize_header_parent_name() local
[all …]
/xen-4.10.0-shim-comet/tools/firmware/etherboot/
A DREADME17 cd gpxe
/xen-4.10.0-shim-comet/tools/fuzz/
A DREADME.afl19 $ cd tools/fuzz/x86_instruction_emulator
/xen-4.10.0-shim-comet/xen/include/xsm/
A Dxsm.h163 int (*mem_sharing_op) (struct domain *d, struct domain *cd, int op);
621 static inline int xsm_mem_sharing_op (xsm_default_t def, struct domain *d, struct domain *cd, int o… in xsm_mem_sharing_op() argument
623 return xsm_ops->mem_sharing_op(d, cd, op); in xsm_mem_sharing_op()
A Ddummy.h614 static XSM_INLINE int xsm_mem_sharing_op(XSM_DEFAULT_ARG struct domain *d, struct domain *cd, int o… in xsm_mem_sharing_op() argument
617 return xsm_default_action(action, current->domain, cd); in xsm_mem_sharing_op()
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/
A Dhvm.c544 struct domain *cd = current->domain; in hvm_print_line() local
553 spin_lock(&cd->pbuf_lock); in hvm_print_line()
555 cd->pbuf[cd->pbuf_idx++] = c; in hvm_print_line()
556 if ( (cd->pbuf_idx == (DOMAIN_PBUF_SIZE - 1)) || (c == '\n') ) in hvm_print_line()
558 cd->pbuf[cd->pbuf_idx] = '\0'; in hvm_print_line()
559 guest_printk(cd, XENLOG_G_DEBUG "%s\n", cd->pbuf); in hvm_print_line()
560 cd->pbuf_idx = 0; in hvm_print_line()
562 spin_unlock(&cd->pbuf_lock); in hvm_print_line()
/xen-4.10.0-shim-comet/xen/xsm/flask/
A Dhooks.c1568 static int flask_mem_sharing_op(struct domain *d, struct domain *cd, int op) in flask_mem_sharing_op() argument
1570 int rc = current_has_perm(cd, SECCLASS_HVM, HVM__MEM_SHARING); in flask_mem_sharing_op()
1573 return domain_has_perm(d, cd, SECCLASS_HVM, HVM__SHARE_MEM); in flask_mem_sharing_op()
/xen-4.10.0-shim-comet/
A DREADME110 2. cd to xen-unstable (or whatever you sensibly rename it to).
/xen-4.10.0-shim-comet/tools/xentrace/
A Dxenalyze.c8995 struct cpu_change_data *cd; in scan_for_new_pcpu() local
9010 cd = (typeof(cd))rec.u.notsc.data; in scan_for_new_pcpu()
9012 if ( cd->cpu > MAX_CPUS ) in scan_for_new_pcpu()
9015 __func__, cd->cpu, MAX_CPUS); in scan_for_new_pcpu()
9020 if(cd->cpu > P.max_active_pcpu || !P.pcpu[cd->cpu].active) { in scan_for_new_pcpu()
9021 struct pcpu_info *p = P.pcpu + cd->cpu; in scan_for_new_pcpu()
9024 __func__, cd->cpu, (unsigned long long)offset); in scan_for_new_pcpu()
9037 offset += r + cd->window_size; in scan_for_new_pcpu()
9041 if ( cd->cpu > P.max_active_pcpu ) in scan_for_new_pcpu()
9042 P.max_active_pcpu = cd->cpu; in scan_for_new_pcpu()
/xen-4.10.0-shim-comet/docs/man/
A Dxl.pod.1.in1361 =item B<cd-insert> I<domain-id> I<virtualdevice> I<target>
1363 Insert a cdrom into a guest domain's existing virtual cd drive. The
1373 =item B<cd-eject> I<domain-id> I<virtualdevice>
1375 Eject a cdrom from a guest domain's virtual cd drive, specified by
A Dxl.cfg.pod.5.in1490 The default is B<cd>, meaning try booting from the hard disk first, but fall
/xen-4.10.0-shim-comet/tools/firmware/rombios/
A Drombios.c11061 ;; eltorito floppy/harddisk emulation from cd

Completed in 73 milliseconds