MCPcopy Create free account
hub / github.com/Bareflank/hypervisor / bferror

Function bferror

loader/windows/include/debug.h:271–279  ·  view source on GitHub ↗

* <!-- description --> * @brief Outputs a string to the console * * <!-- inputs/outputs --> * @param str the string to output */

Source from the content-addressed store, hash-verified

269 * @param str the string to output
270 */
271static inline void
272bferror(char const *const str)
273{
274 serial_write("[BAREFLANK ERROR] ");
275 serial_write(str);
276 serial_write("\n");
277
278 DbgPrintEx(DPFLTR_IHVDRIVER_ID, DPFLTR_ERROR_LEVEL, "[BAREFLANK ERROR] %s", str);
279}
280
281/**
282 * <!-- description -->

Callers 7

loaderEvtIoDeviceControlFunction · 0.50
platform_allocFunction · 0.50
platform_copy_from_userFunction · 0.50
platform_copy_to_userFunction · 0.50

Calls 1

serial_writeFunction · 0.50

Tested by

no test coverage detected