Symbol: of_call_method
headers/private/kernel/platform/openfirmware/openfirmware.h
81
extern intptr_t of_call_method(uint32_t handle, const char *method,
src/system/boot/platform/openfirmware/arch/sparc/mmu.cpp
166
int status = of_call_method(sMmuInstance, "map", 5, 0, (uint64)mode, size,
src/system/boot/platform/openfirmware/arch/sparc/mmu.cpp
404
status = of_call_method(sMmuInstance, "claim", 3, 1, 0, size,
src/system/boot/platform/openfirmware/arch/sparc/mmu.cpp
429
status = of_call_method(sMemoryInstance, "claim", 3, 1, physicalAddress,
src/system/boot/platform/openfirmware/network.cpp
210
if (of_call_method(fHandle, "dma-alloc", 1, 1, size, &dmaMemory)
src/system/boot/platform/openfirmware/network.cpp
225
if (of_call_method(parentInstance, "dma-alloc", 1, 1, size, &dmaMemory)
src/system/boot/platform/openfirmware/network.cpp
241
of_call_method(fHandle, "dma-free", 1, 0, buffer);
src/system/boot/platform/openfirmware/real_time_clock.cpp
49
if (of_call_method(sHandle, "get-time", 0, 6, &year, &month, &day,
src/system/boot/platform/openfirmware/video.cpp
35
if (of_call_method(sScreen, "set-colors", 3, 0,
src/system/boot/platform/openfirmware/video.cpp
38
of_call_method(sScreen, "color!", 4, 0, index,
src/system/boot/platform/openfirmware/video.cpp
66
if (of_call_method(sScreen, "dimensions", 0, 2, &height, &width)
src/system/kernel/arch/ppc/arch_platform.cpp
194
if (of_call_method(fRTC, "set-time", 6, 0, t.tm_year, t.tm_mon, t.tm_mday,
src/system/kernel/arch/ppc/arch_platform.cpp
205
if (of_call_method(fRTC, "get-time", 0, 6, &t.tm_year, &t.tm_mon,
src/system/kernel/arch/sparc/arch_platform.cpp
194
if (of_call_method((uint32_t)fRTC, "set-time", 6, 0, t.tm_year, t.tm_mon, t.tm_mday,
src/system/kernel/arch/sparc/arch_platform.cpp
205
if (of_call_method((uint32_t)fRTC, "get-time", 0, 6, &t.tm_year, &t.tm_mon,