MCPcopy Index your code
hub / github.com/F-Stack/f-stack / printf

Function printf

freebsd/kern/subr_prf.c:400–411  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

398}
399
400int
401printf(const char *fmt, ...)
402{
403 va_list ap;
404 int retval;
405
406 va_start(ap, fmt);
407 retval = vprintf(fmt, ap);
408 va_end(ap);
409
410 return (retval);
411}
412
413int
414vprintf(const char *fmt, va_list ap)

Callers 15

shminitFunction · 0.70
sdt_probe_stubFunction · 0.70
kcsan_enableFunction · 0.70
ktr_tracepointFunction · 0.70
mp_startFunction · 0.70
subr_smp.cFile · 0.70
fail_point_setFunction · 0.70
epoch_trace_listFunction · 0.70
in_epoch_verbose_preemptFunction · 0.70

Calls 1

vprintfFunction · 0.70

Tested by 15

ztest_parse_name_valueFunction · 0.40
process_optionsFunction · 0.40
ztest_spa_upgradeFunction · 0.40
ztest_vdev_class_addFunction · 0.40
ztest_split_poolFunction · 0.40
grow_vdevFunction · 0.40
online_vdevFunction · 0.40
ztest_vdev_LUN_growthFunction · 0.40
ztest_dataset_createFunction · 0.40
ztest_dmu_read_writeFunction · 0.40