/xen-4.10.0-shim-comet/tools/libxc/ |
A D | xc_foreign_memory.c | 23 void *xc_map_foreign_pages(xc_interface *xch, uint32_t dom, int prot, in xc_map_foreign_pages() argument 31 return xenforeignmemory_map(xch->fmem, dom, prot, num, arr, NULL); in xc_map_foreign_pages() 35 uint32_t dom, int size, int prot, in xc_map_foreign_range() argument 51 ret = xc_map_foreign_pages(xch, dom, prot, arr, num); in xc_map_foreign_range() 58 int prot, size_t chunksize, in xc_map_foreign_ranges() argument 79 ret = xc_map_foreign_pages(xch, dom, prot, arr, num); in xc_map_foreign_ranges() 84 void *xc_map_foreign_bulk(xc_interface *xch, uint32_t dom, int prot, in xc_map_foreign_bulk() argument 87 return xenforeignmemory_map(xch->fmem, dom, prot, num, arr, err); in xc_map_foreign_bulk()
|
A D | xc_gnttab_compat.c | 25 int prot) in xc_gnttab_map_grant_ref() argument 27 return xengnttab_map_grant_ref(xcg, domid, ref, prot); in xc_gnttab_map_grant_ref() 34 int prot) in xc_gnttab_map_grant_refs() argument 36 return xengnttab_map_grant_refs(xcg, count, domids, refs, prot); in xc_gnttab_map_grant_refs() 43 int prot) in xc_gnttab_map_domain_grant_refs() argument 45 return xengnttab_map_domain_grant_refs(xcg, count, domid, refs, prot); in xc_gnttab_map_domain_grant_refs() 51 int prot, in xc_gnttab_map_grant_ref_notify() argument 55 return xengnttab_map_grant_ref_notify(xcg, domid, ref, prot, in xc_gnttab_map_grant_ref_notify()
|
A D | xc_offline_page.c | 400 int prot, in xc_map_m2p() argument 437 m2p_size, prot, M2P_CHUNK_SIZE, in xc_map_m2p()
|
/xen-4.10.0-shim-comet/tools/libs/gnttab/ |
A D | gnttab_core.c | 86 int prot) in xengnttab_map_grant_ref() argument 88 return osdep_gnttab_grant_map(xgt, 1, 0, prot, &domid, &ref, -1, -1); in xengnttab_map_grant_ref() 95 int prot) in xengnttab_map_grant_refs() argument 97 return osdep_gnttab_grant_map(xgt, count, 0, prot, domids, refs, -1, -1); in xengnttab_map_grant_refs() 104 int prot) in xengnttab_map_domain_grant_refs() argument 107 prot, &domid, refs, -1, -1); in xengnttab_map_domain_grant_refs() 113 int prot, in xengnttab_map_grant_ref_notify() argument 117 return osdep_gnttab_grant_map(xgt, 1, 0, prot, &domid, &ref, in xengnttab_map_grant_ref_notify()
|
A D | gnttab_unimp.c | 43 int prot) in xengnttab_map_grant_ref() argument 52 int prot) in xengnttab_map_grant_refs() argument 61 int prot) in xengnttab_map_domain_grant_refs() argument 69 int prot, in xengnttab_map_grant_ref_notify() argument
|
A D | minios.c | 62 uint32_t count, int flags, int prot, in osdep_gnttab_grant_map() argument 77 refs, prot & PROT_WRITE); in osdep_gnttab_grant_map()
|
A D | private.h | 27 uint32_t count, int flags, int prot,
|
A D | freebsd.c | 66 uint32_t count, int flags, int prot, in osdep_gnttab_grant_map() argument 109 addr = mmap(NULL, PAGE_SIZE * count, prot, MAP_SHARED, fd, in osdep_gnttab_grant_map()
|
A D | linux.c | 86 uint32_t count, int flags, int prot, in osdep_gnttab_grant_map() argument 131 addr = mmap(NULL, PAGE_SIZE * count, prot, MAP_SHARED, fd, in osdep_gnttab_grant_map()
|
/xen-4.10.0-shim-comet/tools/libs/foreignmemory/ |
A D | minios.c | 44 int prot, int flags, size_t num, in osdep_xenforeignmemory_map() argument 48 if (prot & PROT_READ) in osdep_xenforeignmemory_map() 50 if (prot & PROT_WRITE) in osdep_xenforeignmemory_map()
|
A D | core.c | 83 int prot, int flags, size_t num, in xenforeignmemory_map2() argument 95 ret = osdep_xenforeignmemory_map(fmem, dom, addr, prot, flags, num, arr, err); in xenforeignmemory_map2() 119 uint32_t dom, int prot, in xenforeignmemory_map() argument 123 return xenforeignmemory_map2(fmem, dom, NULL, prot, 0, num, arr, err); in xenforeignmemory_map()
|
A D | private.h | 33 int prot, int flags, size_t num, 44 void *addr, int prot, int flags,
|
A D | compat.c | 25 void *addr, int prot, int flags, size_t num, in osdep_xenforeignmemory_map() argument 44 ret = osdep_map_foreign_batch(fmem, dom, addr, prot, flags, pfn, num); in osdep_xenforeignmemory_map()
|
A D | freebsd.c | 59 int prot, int flags, size_t num, in osdep_xenforeignmemory_map() argument 66 addr = mmap(addr, num << PAGE_SHIFT, prot, flags | MAP_SHARED, fd, 0); in osdep_xenforeignmemory_map()
|
A D | netbsd.c | 70 void *addr, int prot, int flags, in osdep_map_foreign_batch() argument 75 addr = mmap(addr, num*XC_PAGE_SIZE, prot, flags | MAP_ANON | MAP_SHARED, -1, 0); in osdep_map_foreign_batch()
|
A D | solaris.c | 71 void *addr, int prot, int flags, xen_pfn_t *arr, int num) in osdep_map_foreign_batch() argument 75 addr = mmap(addr, num*XC_PAGE_SIZE, prot, flags | MAP_SHARED, fd, 0); in osdep_map_foreign_batch()
|
A D | linux.c | 146 int prot, int flags, size_t num, in osdep_xenforeignmemory_map() argument 154 addr = mmap(addr, num << PAGE_SHIFT, prot, flags | MAP_SHARED, in osdep_xenforeignmemory_map()
|
/xen-4.10.0-shim-comet/tools/libxc/include/ |
A D | xenctrl_compat.h | 28 int size, int prot, 31 void *xc_map_foreign_pages(xc_interface *xch, uint32_t dom, int prot, 45 void *xc_map_foreign_bulk(xc_interface *xch, uint32_t dom, int prot, 85 int prot); 90 int prot); 95 int prot); 99 int prot,
|
A D | xenguest.h | 311 int prot,
|
/xen-4.10.0-shim-comet/tools/libs/gnttab/include/ |
A D | xengnttab.h | 164 int prot); 186 int prot); 206 int prot); 232 int prot,
|
/xen-4.10.0-shim-comet/tools/libs/foreignmemory/include/ |
A D | xenforeignmemory.h | 107 int prot, size_t pages, 119 void *addr, int prot, int flags, size_t pages,
|
/xen-4.10.0-shim-comet/xen/common/efi/ |
A D | boot.c | 1399 unsigned int prot; in efi_init_memory() member 1415 unsigned int prot = PAGE_HYPERVISOR_RWX; in efi_init_memory() local 1437 prot |= _PAGE_PWT | MAP_SMALL_PAGES; in efi_init_memory() 1439 prot |= _PAGE_PAT | MAP_SMALL_PAGES; in efi_init_memory() 1441 prot |= _PAGE_PWT | _PAGE_PCD | MAP_SMALL_PAGES; in efi_init_memory() 1444 prot |= _PAGE_PAT | _PAGE_PWT | MAP_SMALL_PAGES; in efi_init_memory() 1451 prot |= _PAGE_PWT | _PAGE_PCD | MAP_SMALL_PAGES; in efi_init_memory() 1456 prot &= ~_PAGE_RW; in efi_init_memory() 1458 prot |= _PAGE_NX; in efi_init_memory() 1465 prot &= ~_PAGE_GLOBAL; in efi_init_memory() [all …]
|
/xen-4.10.0-shim-comet/xen/drivers/passthrough/arm/ |
A D | smmu.c | 1620 if (!(prot & IOMMU_WRITE) && (prot & IOMMU_READ)) 1623 if (prot & IOMMU_CACHE) 1628 if (prot & IOMMU_READ) 1630 if (prot & IOMMU_WRITE) 1632 if (prot & IOMMU_CACHE) 1638 if (prot & IOMMU_NOEXEC) 1642 if (!(prot & (IOMMU_READ | IOMMU_WRITE))) 1730 prot, stage); 1764 prot, stage); 1773 size_t size, int prot) [all …]
|
/xen-4.10.0-shim-comet/xen/arch/x86/x86_64/ |
A D | mmconfig_64.c | 117 unsigned long idx, unsigned int prot) in mcfg_ioremap() argument 130 size >> PAGE_SHIFT, prot)) in mcfg_ioremap()
|
/xen-4.10.0-shim-comet/xen/drivers/passthrough/vtd/ |
A D | iommu.h | 272 #define dma_set_pte_prot(p, prot) do { \ argument 273 (p).val = ((p).val & ~DMA_PTE_PROT) | ((prot) & DMA_PTE_PROT); \
|