MCPcopy Create free account
hub / github.com/coreboot/coreboot / conf_message

Function conf_message

util/kconfig/confdata.c:204–217  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202}
203
204static void conf_message(const char *fmt, ...)
205{
206 va_list ap;
207 char buf[4096];
208
209 if (!conf_message_callback)
210 return;
211
212 va_start(ap, fmt);
213
214 vsnprintf(buf, sizeof(buf), fmt, ap);
215 conf_message_callback(buf);
216 va_end(ap);
217}
218
219const char *conf_get_configname(void)
220{

Callers 2

conf_read_simpleFunction · 0.85
conf_writeFunction · 0.85

Calls 2

conf_message_callbackFunction · 0.70
vsnprintfFunction · 0.50

Tested by

no test coverage detected