Searched refs:nextva (Results 1 - 4 of 4) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dmappings.c225 addr64_t nextva; local
231 mp = hw_rem_map(pmap, va, &nextva); /* Remove a mapping from this pmap */
238 return (nextva | 1); /* Nothing found to unmap */
255 return (nextva);
274 return nextva; /* Tell them we did it */
429 * mapping *mapping_find(pmap, va, *nextva, full) - Finds a mapping
440 * NOTE: The nextva field is not valid when full is TRUE.
445 mapping_t *mapping_find(pmap_t pmap, addr64_t va, addr64_t *nextva, int full) { /* Make an address mapping */ argument
458 mp = hw_find_map(curpmap, curva, nextva); /* Find the mapping for this address */
486 * void mapping_protect(pmap_t pmap, addt_t va, vm_prot_t prot, addr64_t *nextva)
499 mapping_protect(pmap_t pmap, addr64_t va, vm_prot_t prot, addr64_t *nextva) argument
1032 addr64_t va, nextva; local
1599 addr64_t nextva, vaddr = 0, paddr; local
[all...]
H A Dmappings.h378 extern mapping_t *mapping_find(pmap_t pmap, addr64_t va, addr64_t *nextva, int full); /* Finds a mapping */
394 extern void mapping_protect(pmap_t pmap, addr64_t va, vm_prot_t prot, addr64_t *nextva); /* Change protection of a single mapping to page */
426 extern mapping_t *hw_find_map(pmap_t pmap, addr64_t va, addr64_t *nextva); /* Finds a mapping */
429 extern unsigned int hw_protect(pmap_t pmap, addr64_t va, vm_prot_t prot, addr64_t *nextva); /* Change the protection of a virtual page */
H A Dpmap.c1207 addr64_t nextva; local
1219 mp = mapping_find(pmap, (addr64_t)gva, &nextva,1); /* Find the mapping for this address */
1255 addr64_t nextva; local
1259 mp = mapping_find(pmap, va, &nextva, 1); /* Find the mapping for this address */
1709 addr64_t nextva; local
1722 mp = mapping_find(grand, vaddr, &nextva, 0); /* Find the nested map */
2044 addr64_t nextva; local
2049 mp = hw_find_map(pmap, 0xFFFFFFFFF0000000ULL, &nextva); /* Find the mapping for this address */
H A Dvmachmon.c981 addr64_t ova, nextva; local
1003 mp = mapping_find(map->pmap, cva, &nextva, 0);
1049 mp = mapping_find(map->pmap, cva, &nextva, 0); /* Find the mapping for this address */
1241 addr64_t nextva, hva; local
1250 mp = mapping_find(pmap, gva, &nextva, 0); /* Find guest mapping for this virtual address */
1505 addr64_t nextva; local
1515 ret = hw_protect(pmap, va, prot, &nextva); /* Try to change protection */

Completed in 41 milliseconds