Searched refs:fNextLine (Results 1 - 2 of 2) sorted by relevance

/haiku/src/apps/terminal/
H A DHistoryBuffer.cpp25 fNextLine(0),
59 fNextLine = 0;
71 fNextLine = 0;
227 HistoryLine* line = &fLines[fNextLine];
228 fNextLine = (fNextLine + 1) % fCapacity;
249 fNextLine = 0;
291 HistoryLine* line = &fLines[fNextLine];
292 fNextLine = (fNextLine
[all...]
H A DHistoryBuffer.h47 int32 fNextLine; member in class:HistoryBuffer
58 return &fLines[(fCapacity + fNextLine - index - 1) % fCapacity];

Completed in 60 milliseconds