HomeSort by: relevance | last modified time | path
    Searched defs:db_history_last (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/ddb/
db_input.c 66 static char *db_history_last = db_history; /* start of last line */ variable in typeref:typename:char *
147 KASSERT(&db_history[0] <= db_history_last);
148 KASSERT(db_history_last <= &db_history[DDB_HISTORY_SIZE-1]);
150 *db_history_last++ = c;
152 if (db_history_last > &db_history[DDB_HISTORY_SIZE-1])
153 db_history_last = db_history;
236 while (db_history_curr != db_history_last) {
242 if (db_history_curr == db_history_last) {
260 while (db_history_curr != db_history_last) {
265 if (db_history_curr != db_history_last) {
    [all...]

Completed in 39 milliseconds