Searched refs:fHistory (Results 1 - 5 of 5) sorted by relevance

/haiku/src/apps/debugger/user_interface/cli/
H A DCliContext.cpp97 fHistory(NULL),
147 fHistory = history_init();
148 if (fHistory == NULL)
152 history(fHistory, &historyEvent, H_SETSIZE, 100);
154 el_set(fEditLine, EL_HIST, &history, fHistory);
183 if (fHistory != NULL) {
184 history_end(fHistory);
185 fHistory = NULL;
368 history(fHistory, &historyEvent, H_ENTER, line);
H A DCliContext.h144 History* fHistory; member in class:CliContext
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.h236 HistoryBuffer* fHistory; member in class:BasicTerminalBuffer
264 return fHistory != NULL ? fHistory->Size() : 0;
271 return fHistory != NULL ? fHistory->Capacity() : 0;
H A DBasicTerminalBuffer.cpp74 if (index < 0 && fHistory != NULL)
75 return fHistory->GetTerminalLineAt(-index - 1, lineBuffer);
115 fHistory(NULL),
132 delete fHistory;
167 fHistory = new(std::nothrow) HistoryBuffer;
168 if (fHistory == NULL)
171 error = fHistory->Init(width, historySize);
192 return ResizeTo(width, height, fHistory != NULL ? fHistory->Capacity() : 0);
231 if (fHistory !
[all...]
H A DTerminalBuffer.cpp407 std::swap(fHistory, fAlternateHistory);

Completed in 107 milliseconds