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

/haiku/src/apps/terminal/
H A DHistoryBuffer.cpp163 HistoryLine* historyLine = _AllocateLine(attributesRuns, byteLength); local
166 AttributesRun* attributesRun = historyLine->AttributesRuns();
168 char* chars = historyLine->Chars();
204 historyLine->softBreak = line->softBreak;
205 historyLine->attributes = line->attributes;
206 //debug_printf(" line: \"%.*s\", history size now: %ld\n", historyLine->byteLength, historyLine->Chars(), fSize);
/haiku/src/system/kernel/debug/
H A Ddebug.cpp545 int32 historyLine = 0; local
549 historyLine = currentHistoryLine - 1;
550 if (historyLine < 0)
551 historyLine = HISTORY_SIZE - 1;
557 historyLine = currentHistoryLine + 1;
558 if (historyLine >= HISTORY_SIZE)
559 historyLine = 0;
564 if (historyLine == sCurrentLine) {
565 sLineBuffer[historyLine][0] = '\0';
566 } else if (sLineBuffer[historyLine][
591 int32 historyLine = currentHistoryLine; local
[all...]

Completed in 92 milliseconds