Symbol: insert_virtual_allocated_range
headers/private/kernel/boot/addr_range.h
41
status_t insert_virtual_allocated_range(uint64 start, uint64 size);
src/system/boot/platform/efi/arch/arm/arch_mmu.cpp
123
ASSERT_ALWAYS(insert_virtual_allocated_range(virtAddr, size) >= B_OK);
src/system/boot/platform/efi/arch/arm64/arch_mmu.cpp
244
ASSERT_ALWAYS(insert_virtual_allocated_range(virt_addr, size) >= B_OK);
src/system/boot/platform/efi/arch/riscv64/arch_mmu.cpp
205
ASSERT_ALWAYS(insert_virtual_allocated_range(virtAdr, size) >= B_OK);
src/system/boot/platform/efi/arch/x86/arch_mmu.cpp
179
ASSERT_ALWAYS(insert_virtual_allocated_range(virtAddr, size) >= B_OK);
src/system/boot/platform/openfirmware/arch/ppc/mmu.cpp
355
if (insert_virtual_allocated_range((addr_t)map->virtual_address,
src/system/boot/platform/openfirmware/arch/ppc/mmu.cpp
532
insert_virtual_allocated_range((addr_t)virtualAddress, size);
src/system/boot/platform/openfirmware/arch/ppc/mmu.cpp
590
if (insert_virtual_allocated_range((addr_t)virtualAddress, length)
src/system/boot/platform/openfirmware/arch/ppc/mmu.cpp
866
insert_virtual_allocated_range(realBase, realSize * 2);
src/system/boot/platform/openfirmware/arch/ppc/mmu.cpp
868
insert_virtual_allocated_range(total - realSize, realSize);
src/system/boot/platform/openfirmware/arch/ppc/mmu.cpp
870
insert_virtual_allocated_range((addr_t)table, tableSize);
src/system/boot/platform/openfirmware/arch/ppc/mmu.cpp
874
insert_virtual_allocated_range(0x05800000, 0x06000000 - 0x05800000);
src/system/boot/platform/openfirmware/arch/sparc/mmu.cpp
250
if (insert_virtual_allocated_range((addr_t)map->virtual_address,
src/system/boot/platform/openfirmware/arch/sparc/mmu.cpp
439
insert_virtual_allocated_range((addr_t)virtualAddress, size);
src/system/boot/platform/openfirmware/arch/sparc/mmu.cpp
481
if (insert_virtual_allocated_range((addr_t)virtualAddress, length)
src/system/boot/platform/riscv/mmu.cpp
194
ASSERT_ALWAYS(insert_virtual_allocated_range(virtAdr, size) >= B_OK);