Home
last modified time | relevance | path

Searched refs:kh_fallback_map (Results 1 – 5 of 5) sorted by relevance

/xnu-8020.101.4/iokit/Kernel/
H A DIOBufferMemoryDescriptor.cpp90 kr = kernel_memory_allocate(kheap->kh_fallback_map, &vmaddr, in IOBMDPageProc()
340 kr = kernel_memory_allocate(kheap->kh_fallback_map, &address, in initWithPhysicalMask()
726 kmem_free(kheap->kh_fallback_map, page, page_size); in free()
738 kmem_free(kheap->kh_fallback_map, allocation, size + page_size * 2); in free()
H A DIOLib.cpp467 kr = kernel_memory_allocate(kheap->kh_fallback_map, &address, in IOMallocAligned_internal()
481 kr = kernel_memory_allocate(kheap->kh_fallback_map, &allocationAddress, in IOMallocAligned_internal()
549 kheap_map = KHEAP_DEFAULT->kh_fallback_map; in IOFreeAligned_internal()
551 kheap_map = kheap->kh_fallback_map; in IOFreeAligned_internal()
618 kmem_free(kheap->kh_fallback_map, (vm_offset_t) address, size); in IOKernelFreePhysical()
694 kr = kmem_alloc_contig(kheap->kh_fallback_map, &virt, size, in IOKernelAllocateWithPhysicalRestrict()
698 kr = kernel_memory_allocate(kheap->kh_fallback_map, &virt, in IOKernelAllocateWithPhysicalRestrict()
/xnu-8020.101.4/osfmk/kern/
H A Dkalloc.c484 kheap->kh_fallback_map = kernel_data_map; in kalloc_zones_init()
488 kheap->kh_fallback_map = kernel_map; in kalloc_zones_init()
1720 KHEAP_KT_VAR->kh_fallback_map = KHEAP_DEFAULT->kh_fallback_map; in kalloc_type_create_zones_var()
1902 return kheap->kh_fallback_map; in kalloc_guess_map_for_addr()
1912 return kheap->kh_fallback_map; in kalloc_map_for_size()
2177 if (alloc_map != kheap->kh_fallback_map) { in kalloc_large()
2181 if (kernel_memory_allocate(kheap->kh_fallback_map, in kalloc_large()
2982 fb_map = KHEAP_DEFAULT->kh_fallback_map; in kheap_startup_init()
2988 fb_map = KHEAP_DATA_BUFFERS->kh_fallback_map; in kheap_startup_init()
2994 fb_map = KHEAP_KEXT->kh_fallback_map; in kheap_startup_init()
[all …]
H A Dkalloc.h98 vm_map_t kh_fallback_map; member
/xnu-8020.101.4/libkern/c++/
H A DOSData.cpp61 alloc_map = KHEAP_DATA_BUFFERS->kh_fallback_map; in getAllocMap()