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

Function Synchronize_Buffer

Source/CursesDialog/form/frm_driver.c:424–433  ·  view source on GitHub ↗

--------------------------------------------------------------------------- | Facility : libnform | Function : static void Synchronize_Buffer(FORM * form) | | Description : If there was a change, copy the content of the | window into the buffer, so the buffer is synchronized | with the windows content. We have to indicate that the |

Source from the content-addressed store, hash-verified

422| buffer needs validation due to the change.
423|
424| Return Values : -
425+--------------------------------------------------------------------------*/
426INLINE static void Synchronize_Buffer(FORM * form)
427{
428 if (form->status & _WINDOW_MODIFIED)
429 {
430 form->status &= ~_WINDOW_MODIFIED;
431 form->status |= _FCHECK_REQUIRED;
432 Window_To_Buffer(form->w,form->current);
433 wmove(form->w,form->currow,form->curcol);
434 }
435}
436

Callers 14

Field_GrownFunction · 0.85
IFN_Next_WordFunction · 0.85
IFN_Previous_WordFunction · 0.85
IFN_Beginning_Of_FieldFunction · 0.85
IFN_End_Of_FieldFunction · 0.85
IFN_Beginning_Of_LineFunction · 0.85
IFN_End_Of_LineFunction · 0.85
Is_There_Room_For_A_LineFunction · 0.85
FE_Delete_PreviousFunction · 0.85
FE_Delete_WordFunction · 0.85
CR_Next_ChoiceFunction · 0.85

Calls 2

Window_To_BufferFunction · 0.85
wmoveFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…