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

Function mvwprintw

payloads/libpayload/curses/tinycurses.c:367–380  ·  view source on GitHub ↗

int mvscanw (int,int, NCURSES_CONST char *,...) {} int mvwin (WINDOW *,int,int) {}

Source from the content-addressed store, hash-verified

365// int mvscanw (int,int, NCURSES_CONST char *,...) {}
366// int mvwin (WINDOW *,int,int) {}
367int mvwprintw(WINDOW *win, int y, int x, const char *fmt, ...)
368{
369 va_list argp;
370 int code;
371
372 if (wmove(win, y, x) == ERR)
373 return ERR;
374
375 va_start(argp, fmt);
376 code = vwprintw(win, fmt, argp);
377 va_end(argp);
378
379 return code;
380}
381// int mvwscanw (WINDOW *,int,int, NCURSES_CONST char *,...) {}
382// int napms (int) {}
383// WINDOW *newpad (int,int) {}

Callers 15

do_nameFunction · 0.50
cpuinfo_module_redrawFunction · 0.50
dump_ramFunction · 0.50
coreboot_module_redrawFunction · 0.50
multiboot_module_redrawFunction · 0.50
show_config_spaceFunction · 0.50
pci_module_redrawFunction · 0.50
cbfs_module_redrawFunction · 0.50
print_module_titleFunction · 0.50
print_submenuFunction · 0.50
print_time_and_dateFunction · 0.50
print_menuFunction · 0.50

Calls 2

wmoveFunction · 0.70
vwprintwFunction · 0.70

Tested by

no test coverage detected