Symbol: of_interpret
headers/private/kernel/platform/openfirmware/openfirmware.h
79
extern intptr_t of_interpret(const char *command, intptr_t numArgs,
src/system/boot/platform/openfirmware/console.cpp
213
of_interpret("erase-screen", 0, 0);
src/system/boot/platform/openfirmware/console.cpp
223
if (of_interpret("screen-#columns", 0, 1, &columnCount) == OF_FAILED)
src/system/boot/platform/openfirmware/console.cpp
225
if (of_interpret("#columns", 0, 1, &columnCount) == OF_FAILED)
src/system/boot/platform/openfirmware/console.cpp
237
if (of_interpret("screen-#rows", 0, 1, &lineCount) == OF_FAILED)
src/system/boot/platform/openfirmware/console.cpp
239
if (of_interpret("#lines", 0, 1, &lineCount) == OF_FAILED)
src/system/boot/platform/openfirmware/console.cpp
257
of_interpret("toggle-cursor"
src/system/boot/platform/openfirmware/console.cpp
314
of_interpret("toggle-cursor"
src/system/boot/platform/openfirmware/network.cpp
126
if (of_interpret("mac-address", 0, 2, &size, &ptr) != OF_FAILED) {
src/system/boot/platform/openfirmware/start.cpp
86
of_interpret("reset-all", 0, 0);
src/system/kernel/arch/ppc/arch_platform.cpp
166
if (of_interpret("key", 0, 1, &key) == OF_FAILED)
src/system/kernel/arch/ppc/arch_platform.cpp
222
of_interpret("reset-all", 0, 0);
src/system/kernel/arch/ppc/arch_platform.cpp
225
of_interpret("shut-down", 0, 0);
src/system/kernel/arch/sparc/arch_platform.cpp
166
if (of_interpret("key", 0, 1, &key) == OF_FAILED)
src/system/kernel/arch/sparc/arch_platform.cpp
222
of_interpret("reset-all", 0, 0);
src/system/kernel/arch/sparc/arch_platform.cpp
225
of_interpret("shut-down", 0, 0);