MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / error

Function error

subprojects/llama.cpp/common/console.cpp:1124–1132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1122 }
1123
1124 void error(const char * fmt, ...) {
1125 va_list args;
1126 va_start(args, fmt);
1127 display_type cur = current_display;
1128 set_display(DISPLAY_TYPE_ERROR);
1129 vfprintf(out, fmt, args);
1130 set_display(cur); // restore previous color
1131 va_end(args);
1132 }
1133
1134 void flush() {
1135 fflush(out);

Callers 15

createSourceFileMethod · 0.85
findIntellijPluginRootFunction · 0.85
connectMethod · 0.85
shellCommandMethod · 0.85
AdbKeyClass · 0.85
generate_completionMethod · 0.85
mainFunction · 0.85
validateApiKeyFunction · 0.85
mainMethod · 0.85
addResTableEntryMethod · 0.85
addFileEntryImplMethod · 0.85

Calls 1

set_displayFunction · 0.85

Tested by 3

createSourceFileMethod · 0.68
findIntellijPluginRootFunction · 0.68