Symbol: nvmm_gpa_map
lib/libnvmm/nvmm.h
114
int nvmm_gpa_map(struct nvmm_machine *, uintptr_t, gpaddr_t, size_t, int);
sys/dev/virtual/nvmm/nvmm.c
1038
return nvmm_gpa_map(owner, data);
test/nvmm/calc-vm.c
107
if (nvmm_gpa_map(&mach, hva, gpa, PAGE_SIZE, PROT_READ|PROT_EXEC) == -1)
test/nvmm/demo/toyvirt/main.c
67
if (nvmm_gpa_map(mach, hva, gpa, size, PROT_READ|PROT_WRITE|PROT_EXEC) == -1)
test/testcases/libnvmm/h_io_assist.c
153
ret = nvmm_gpa_map(mach, (uintptr_t)instbuf, 0x2000, PAGE_SIZE,
test/testcases/libnvmm/h_io_assist.c
157
ret = nvmm_gpa_map(mach, (uintptr_t)databuf, 0x1000, PAGE_SIZE,
test/testcases/libnvmm/h_io_assist.c
188
ret = nvmm_gpa_map(mach, (uintptr_t)L4, 0x3000, PAGE_SIZE,
test/testcases/libnvmm/h_io_assist.c
192
ret = nvmm_gpa_map(mach, (uintptr_t)L3, 0x4000, PAGE_SIZE,
test/testcases/libnvmm/h_io_assist.c
196
ret = nvmm_gpa_map(mach, (uintptr_t)L2, 0x5000, PAGE_SIZE,
test/testcases/libnvmm/h_io_assist.c
200
ret = nvmm_gpa_map(mach, (uintptr_t)L1, 0x6000, PAGE_SIZE,
test/testcases/libnvmm/h_mem_assist.c
299
ret = nvmm_gpa_map(mach, (uintptr_t)instbuf, 0x2000, PAGE_SIZE,
test/testcases/libnvmm/h_mem_assist.c
330
ret = nvmm_gpa_map(mach, (uintptr_t)L4, 0x3000, PAGE_SIZE,
test/testcases/libnvmm/h_mem_assist.c
334
ret = nvmm_gpa_map(mach, (uintptr_t)L3, 0x4000, PAGE_SIZE,
test/testcases/libnvmm/h_mem_assist.c
338
ret = nvmm_gpa_map(mach, (uintptr_t)L2, 0x5000, PAGE_SIZE,
test/testcases/libnvmm/h_mem_assist.c
342
ret = nvmm_gpa_map(mach, (uintptr_t)L1, 0x6000, PAGE_SIZE,
test/testcases/libnvmm/h_mem_assist.c
445
ret = nvmm_gpa_map(mach, (uintptr_t)instbuf, 0x2000, PAGE_SIZE,