Home
last modified time | relevance | path

Searched refs:history_pos (Results 1 – 6 of 6) sorted by relevance

/dragonfly/sys/dev/misc/syscons/
HDschistory.c132 scp->history_pos = sc_vtb_tail(history); in sc_alloc_history_buffer()
157 scp->history_pos = 0; in sc_alloc_history_buffer()
214 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_save()
223 if (scp->history_pos != sc_vtb_tail(scp->history)) { in sc_hist_restore()
224 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_restore()
251 pos = scp->history_pos; in history_to_screen_lines()
265 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_home()
273 scp->history_pos = sc_vtb_tail(scp->history); in sc_hist_getback()
281 scp->history_pos = sc_vtb_pos(scp->history, sc_vtb_tail(scp->history), in sc_hist_end()
290 if (sc_vtb_pos(scp->history, scp->history_pos, -(scp->xsize*scp->ysize)) in sc_hist_up_line()
[all …]
HDsyscons.h324 int history_pos; /* position shown on screen */ member
HDsyscons.c3705 scp->history_pos = 0; in init_scp()
/dragonfly/contrib/gdb-7/readline/
HDisearch.c110 cxt->history_pos = 0;
244 cxt->history_pos = cxt->save_line;
338 cxt->history_pos = cxt->last_found_line;
581 cxt->history_pos += cxt->direction;
584 … if ((cxt->sflags & SF_REVERSE) ? (cxt->history_pos < 0) : (cxt->history_pos == cxt->hlen))
591 cxt->sline = cxt->lines[cxt->history_pos];
594 while ((cxt->prev_line_found && STREQ (cxt->prev_line_found, cxt->lines[cxt->history_pos])) ||
608 cxt->history_pos = cxt->last_found_line;
617 cxt->prev_line_found = cxt->lines[cxt->history_pos];
618 rl_replace_line (cxt->lines[cxt->history_pos], 0);
[all …]
HDrlprivate.h86 int history_pos; member
HDsearch.c199 cxt->history_pos = cxt->save_line;