MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / panic

Function panic

rEFIt_UEFI/Platform/Posix/abort.cpp:48–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48void panic(const char* format, ...)
49{
50#ifdef PANIC_CAN_RETURN
51 if ( stop_at_panic ) {
52 VA_LIST va;
53 VA_START(va, format);
54 panic_(format, va); // panic doesn't return
55// VA_END(va);
56 }else{
57 i_have_panicked = true;
58 }
59#else
60 VA_LIST va;
61 VA_START(va, format);
62 panic_(format, va); // panic doesn't return
63#endif
64}
65
66
67void panic(void)

Callers 15

FindBinFunction · 0.50
PreCleanupRSDTFunction · 0.50
LogDataHubXString8Function · 0.50
LogDataHubXStringWFunction · 0.50
serializeMethod · 0.50
Base64DecodeCloverFunction · 0.50
TagDictClass · 0.50
dictKeyCountMethod · 0.50
dictPropertyForKeyMethod · 0.50
arrayPropertyForKeyMethod · 0.50
setKeyValueMethod · 0.50
setDataValueMethod · 0.50

Calls 1

panic_Function · 0.85

Tested by

no test coverage detected