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

Function printf

payloads/libpayload/libc/printf.c:788–798  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

786}
787
788int printf(const char *fmt, ...)
789{
790 int ret;
791 va_list args;
792
793 va_start(args, fmt);
794 ret = vprintf(fmt, args);
795 va_end(args);
796
797 return ret;
798}
799
800static int vprintf_write(const char *str, size_t count, void *unused)
801{

Callers 15

dump_stackFunction · 0.85
print_regsFunction · 0.85
exception_dispatchFunction · 0.85
gdb_exception_hookFunction · 0.85
mmu_config_rangeFunction · 0.85
mmu_initFunction · 0.85
mmu_enableFunction · 0.85
mmu_get_new_rangeFunction · 0.85
lpae_map_initFunction · 0.85
dump_stackFunction · 0.85
print_regsFunction · 0.85
exception_dispatchFunction · 0.85

Calls 1

vprintfFunction · 0.85

Tested by 13

__bdk_dram_run_testFunction · 0.68
bdk_dram_testFunction · 0.68
array_dumpFunction · 0.68
usageFunction · 0.68
mainFunction · 0.68
fmap_create_testFunction · 0.68
fmap_size_testFunction · 0.68
fmap_append_area_testFunction · 0.68
fmap_find_area_testFunction · 0.68
fmap_find_testFunction · 0.68