MCPcopy Create free account
hub / github.com/Kitware/CMake / wrefresh

Function wrefresh

Utilities/cmpdcurses/pdcurses/refresh.c:223–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221}
222
223int wrefresh(WINDOW *win)
224{
225 bool save_clear;
226
227 PDC_LOG(("wrefresh() - called\n"));
228
229 if ( !win || (win->_flags & (_PAD|_SUBPAD)) )
230 return ERR;
231
232 save_clear = win->_clear;
233
234 if (win == curscr)
235 curscr->_clear = TRUE;
236 else
237 wnoutrefresh(win);
238
239 if (save_clear && win->_maxy == SP->lines && win->_maxx == SP->cols)
240 curscr->_clear = TRUE;
241
242 return doupdate();
243}
244
245int refresh(void)
246{

Callers 15

flashFunction · 0.85
slk_clearFunction · 0.85
slk_restoreFunction · 0.85
waddchFunction · 0.85
wechocharFunction · 0.85
wecho_wcharFunction · 0.85
PDC_syncFunction · 0.85
_highlightFunction · 0.85
wgetchFunction · 0.85
napmsFunction · 0.85
wgetnstrFunction · 0.85
wgetn_wstrFunction · 0.85

Calls 2

wnoutrefreshFunction · 0.85
doupdateFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…